Re: Formating Email Message
Try surround the bold text with <b>
Re: Formating Email Message
I have tried both [] and <> however when the email message is opened it just has "<b>THIS IS BOLD</b> or THIS IS BOLD" and same for underlining.
Re: Formating Email Message
I seem to remember that you need to add a header to specify that the email is in HTML, and then use <b>bold text here</b>.
Search google for sending HTML emails and you should find something
Re: Formating Email Message
I did some investigating and it should work if you add this to the top of your email
Code:
Content-Type: text/html; charset=ISO-8859-1
and then use <b>This is bold text</b>
[Edited by MartinLiss]
Re: Formating Email Message
How the email appears to the receiver depends on the client the email is being viewed in. A POP3 client (a bare client, not one calling Word to view files) will see [b]text[/b] as [b]text[/b], not as text - since email is specified as a text medium - characters only. In order to have text appear bold to the receiver, you have to know whether the receiver can read html email (which is an oxymoron).
Re: Formating Email Message
[b] is BBCode which is why it won't work in an email, it only works in certain forums.
<b> is HTML, which is supported by just about all clients, so if you include the header that I gave you above it will work fine
Re: Formating Email Message
I will give a try in a few minutes when I have a chance an let you know.
Re: Formating Email Message
Re: Formating Email Message
Quote:
Originally Posted by shirazamod
[b] is BBCode which is why it won't work in an email, it only works in certain forums.
<b> is HTML, which is supported by just about all clients
All clients that default to reading html, which is fewer and fewer as the exploits increase. One of these days people are going to start realizing that Microsoft's errors don't redefine internet RFCs.