I was using Cpanel ( Lunix Server ) and it was crashing all the time, I was offered to move to VDeck ( FreeBSD sister of lunix ).
To make long story short now I have a small bugs and I need your help.
This is a text of email that my system generates after customer sign up and request services. There is problem in formatting new line and links.
==================================================================================================== ==============
Dear irina,<br />
<br />
Thank you for creating an account with Total Care Cleaners. <br />
You can update your account anytime from the <a href=http://www.totalcarecleaners.com/login_now.php >Login Area</a> <br />
<br />
Login ID : 6512281348<br />
Password : irina<br />
<br />
Best Wishes <br />
<a href=http://www.totalcarecleaners.com>Total Care Cleaners</a> <br />
Customer Support Team <br />
==================================================================================================== ==============
This is a piece of code from *.php file that generate this email.
==================================================================================================== ==============
$mybody2 = "Dear ".$Fname.",\r\n\n";
$mybody2 .= "Thank you for creating an account with Total Care Cleaners. \r\n";
$mybody2 .= "You can update your account anytime from the <a href=http://www.totalcarecleaners.com/login_now.php >Login Area</a> \r\n\n";
$mybody2 .= "Login ID : ".$Phone. "\r\n";
$mybody2 .= "Password : ".$Password. "\r\n";
$mybody2 .= "\r\n";
$mybody2 .= "Best Wishes \r\n";
$mybody2 .= "<a href=http://www.totalcarecleaners.com>Total Care Cleaners</a> \r\n";
$mybody2 .= "Customer Support Team \r\n";
==================================================================================================== ==============
Please tell me what we're doing wrong.
Thanks


Reply With Quote
Bookmarks