flowerscum
Programmer
I have a little VB Script that uses CDONTS to send out an HTML email. The email body is HTML string. The problem is my client's email client (Mac - Entourage) seems to alter the HTML tag, causing the URL to render next to the anchor words.
My code -
"body = body & "searched many hours <br> can only hope this "
"body = body & "" <A href= target=_new class=linkclass>works</a><br>"
works fine on MS email clients (outlook and outlook express). The html source from the resulting email is -
" <A class=linkclass href=""target=_new>works</A><BR> "
However, in Entourage it's -
" works
<# <BR>"
and that renders as
" works <#
Is there a better way to put a string like that together?
Any help would be hugely appreciated. Thank you.
My code -
"body = body & "searched many hours <br> can only hope this "
"body = body & "" <A href= target=_new class=linkclass>works</a><br>"
works fine on MS email clients (outlook and outlook express). The html source from the resulting email is -
" <A class=linkclass href=""target=_new>works</A><BR> "
However, in Entourage it's -
" works
<# <BR>"
and that renders as
" works <#
Is there a better way to put a string like that together?
Any help would be hugely appreciated. Thank you.