How to add interrupt lines?
I use this:
$mailbody=$username."\r\n"; $mailbody.=$email."\r\n"; $altbody=$username."\r\n"; $altbody.=$email."\r\n";
But there are no fault lines.
I use $altbody
because for some reason the software that I use to receive emails does not read HTML, only plain text, so $altbody
is the body when the email reader does not support HTML, I can not use BR ...
Any ideas?
source share