php - How can I change font in phpmailer? -
i'm planning send email font style of "century gothic" when received. hope can me problem. i'm thankful answers.
this code
$mail->body = " <html> <head></head> <body> <b>request id:</b> $bodystring <br> <b>type:</b> $bodystring1 <br> <b>request:</b> $bodystring2 <br> <b>status:</b> $bodystring3 <br> <b>service:</b> $bodystring4 <br> <b>request date:</b> $bodystring5 <br> <b>target date:</b> $bodystring6 <br> </body> ";
html email stylings minefield of issues, need revert html version 4.0 , style inline <font >
tags. need add font <style> body{ }</style>
tag as well above <body>
tags of email. there lot of reading material on interet it's pain in bum make cross platform , cross system support. still uses old tags , keeping styling inline possible way. not bother calling outside style sheets they'll dropped mailreader.
check similar questions , more exhaustive answers. things lot easier if don't want or don't need support micrsoft live / hotmail / outlook email platform it's still faffy fiddle.
please see post guy looks after phpmailer project: do still need use <font> tags in html emails?
Comments
Post a Comment