I could send emails fine from mail on the command line,
but emails from php would go through, with the body of the email missing.
After much frustration I noticed in wirreshark that the line endings were different in how
php generates them with the mail() function vs the console mail client.
An smtp server is supposed to be able to interpret both.
In php.ini after setting:
mail.mixed_lf_and_crlf = On
it seems like I can now email from php.
Does anyone know where I could make a bug report? Or is this a bug?
but emails from php would go through, with the body of the email missing.
After much frustration I noticed in wirreshark that the line endings were different in how
php generates them with the mail() function vs the console mail client.
An smtp server is supposed to be able to interpret both.
In php.ini after setting:
mail.mixed_lf_and_crlf = On
it seems like I can now email from php.
Does anyone know where I could make a bug report? Or is this a bug?