Saturday, March 24, 2012

Maintaining line breaks in HTML email

I have a text box which allows users to input the content for a HTML email.
I need to maintain the line breaks as the user enters them in the text box
when I send the email.

I'm assuming I need to do something like replace the line breaks in the text
box with <br/> tags?

Any ideas how I would do this please?Andrew Banks wrote:
> I have a text box which allows users to input the content for a HTML
> email. I need to maintain the line breaks as the user enters them in
> the text box when I send the email.
> I'm assuming I need to do something like replace the line breaks in
> the text box with <br/> tags?
> Any ideas how I would do this please?

In VB:

FinalText = InputText.Replace(vbCRLF,"<br>")

--

Jos
Cheers Jos, I guessed it would be a replace thing. Just wasn't certain what
to replace with the break tag

"Jos" <josnospambranders@.fastmail.fm> wrote in message
news:%23AL19QmGEHA.700@.TK2MSFTNGP09.phx.gbl...
> Andrew Banks wrote:
> > I have a text box which allows users to input the content for a HTML
> > email. I need to maintain the line breaks as the user enters them in
> > the text box when I send the email.
> > I'm assuming I need to do something like replace the line breaks in
> > the text box with <br/> tags?
> > Any ideas how I would do this please?
> In VB:
> FinalText = InputText.Replace(vbCRLF,"<br>")
> --
> Jos

0 comments:

Post a Comment