简体   繁体   中英

Is HTML supported in subject line of email

I'm sending emails, using Django framework.

And I wonder is it possible to make subject line red, using <span style="color:red">Some subject line</span>

No, HTML tags will not be rendered in the subject field of an email by RFC2822 compliant clients.

The RFC defines lexical tokens (HTML tags etc.) to be used in the body, not in the header fields. The subject is part of the header fields.

Note that this is not a limitation of Django.

If you want fanciness, you might want to look into including unicode characters, which is becoming more and more popular these days.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM