HI all,
I have a email php script and here is part of the code that determine the message of the mail
$message = "First Name: $rFirstName2
Last Name: $rLastName2
Nickname: $rNickName2
Email: $rEmail2
Here how the message will display in email program that support html
First Name: User Name
Last Name: User Last
Nickname: Use NIc
Email: user@asia.com
Pretty neat
But here how it display in email program that support plain text only
First Name: User Name Last Name: User Last Nickname: Use NIc Email: user@asia.com
All into 1 line
Is there anyway i can modify the php code so that it display correctly on plain text format also?
Thanks!