Jump to content

underscore don't show on e-mail message


mariocesar

Recommended Posts

Hi this is the code to send some info by e-mail

$msgs="A new request from Central just arrive! from $username for design# $designname.<br><br> 
				E-mail: $email.<br><br>
				link to see the design: www.allstatecentral.com/images/design/$designcatid_$designdesignid.$designext<br><br>
                    Contact Number: $contactno.";

but the $designcatid don't show may be because the underscore after.

Link to comment
https://forums.phpfreaks.com/topic/174543-underscore-dont-show-on-e-mail-message/
Share on other sites

Hi mariocesar,

 

You need to define the break between the PHP code ($designcatid and $designdesignid) and the HTML code (_).

 

Change your code to read:

 

$msgs="A new request from Central just arrive! from $username for design# $designname.<br><br> 
				E-mail: $email.<br><br>
				link to see the design: www.allstatecentral.com/images/design/$designcatid'_'$designdesignid.$designext<br><br>
                    Contact Number: $contactno.";

 

Hope this helps.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.