I am using php Mailing function in my project. i have sent the values in a php variable
Like
$myvalue="Universal Laser Systems®";
$mailbody="<table><tr><td>".<?=$myvalue?>."</td></tr></table>";
But my email is showing
Univer! sal Laser Systems®
How i avoid such a special charector………..
You need to set the email header so that it can correctly handle your special characters.
Try that and see how you go.
You can see an example of setting the headers in the manual found here