How can I send HTML mails with included CSS with P

2020-02-11 06:09发布

I've problem with sending HTML mails with PHPMailer. I make a Smarty template and I got all the HTML code from it. But when I send mail, I got the mail without included CSS (it's only background-color, font or something like that). In PHPMailer I set that the mail is HTML.

Is there any way to send HTML mail with included CSS?

8条回答
贪生不怕死
2楼-- · 2020-02-11 06:47

Some Email Clients will strip out the <head> section so put your <style></style> tags within the <body>.

查看更多
够拽才男人
3楼-- · 2020-02-11 06:48

HTML and CSS is fraught with pain and frustration. Nothing to do with PHP, it's apparent that most implementations coughoutlookcough were and remain archaic.

This is the only area where I would advise this (and someone else might have a better understanding/plan*), but you should look at cutting the CSS and writing mid-90's style html with <table>, <font> and <hr> tags (oh my)

** please share :)*

查看更多
登录 后发表回答