how do I make email text bold

C

cs_hart

I have an app that sends email to clients. There is now a requiremnt
to have one line in bold, as some clients seem to have overlooked some
instruction. Right now the body is just a bunch of concatenated
strings.
How do I make one of these lines bold?
 
N

Noozer

I have an app that sends email to clients. There is now a requiremnt
to have one line in bold, as some clients seem to have overlooked some
instruction. Right now the body is just a bunch of concatenated
strings.
How do I make one of these lines bold?

Put ***ASTERISKS*** around the important text.
 
R

rowe_newsgroups

I have an app that sends email to clients. There is now a requiremnt
to have one line in bold, as some clients seem to have overlooked some
instruction. Right now the body is just a bunch of concatenated
strings.
How do I make one of these lines bold?

Use the html format and wrap the lines with "strong" tags.

i.e.

Dim text As String = "<strong>This is bold text</strong>"

Thanks,

Seth Rowe
 
G

Guest

I have an app that sends email to clients. There is now a requiremnt
to have one line in bold, as some clients seem to have overlooked some
instruction. Right now the body is just a bunch of concatenated
strings.
How do I make one of these lines bold?


You'll need to send HTML e-mail.

<strong>MY BOLD TEXT HERE</strong>

If you're using System.Net.Mail, make sure you set the Message.IsHTMLBody
Flag to True.
 
C

Cor Ligthert[MVP]

Be aware that beside the rest of the answers, that this completely depend on
the receiving email program.

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top