I'm sending e-mails from my php code. What are the codes or where can I find the codes to set the my e-mail text to Bold or to a Red color or a larger font, etc. The only code I know is backslah n for Chariage Return Line Feed. Thank you, Michael
Set Content-Type to text/html and then just use HTML tags. Or, for broader compatibility, use multipart/alternative with text/html and text/plain MIME sections.
Yes that's the way! use HTML like <strong>Some title</strong><br /> <span style="color:#ff0000; font-weight:bold;">some text</span>
I recommend you to go to a html tutorials site like on w3c and see every html tag needed then add headers into mail function to let interpretors to know that the mails are html thats all