You are right, you can not see from outside, what client application the user is 
working with, to read his e-mail. What you can do is, you can send out both 
informations and let the client application decide what it likes to take. Take a look 
to the CDONTS if you send those mails with an selfprogrammed ASP file, you can choose 
between a few settings there.

---------example
Set objMail = CreateObject("CDONTS.Newmail")
sHTML = "<HTML>"
sHTML = sHTML & "<HEAD>"
sHTML = sHTML & "<TITLE>Bad News!</TITLE>"
sHTML = sHTML & "</HEAD>"
sHTML = sHTML & "<BODY>"
sHTML = sHTML & "<P>Cool Subject<FONT COLOR="#FF0000"><STRONG>"
sHTML = sHTML & "Did you ever wonder about e-mail?</STRONG></FONT>!</P>"
sHTML = sHTML & "</BODY></HTML>"
objMail.From = "[EMAIL PROTECTED]"
objMail.To = "[EMAIL PROTECTED]"
objMail.BodyFormat = cdoBodyFormatHTML
objMail.Body =
sHTML objMail.Send Set 
objMail = Nothing 
-------------------end of example


Check the following in the msdn.microsoft.com

objMail.BodyFormat = cdoBodyFormatHTML
objMail.Body = sHTML

To find the rest you need



-----Urspr�ngliche Nachricht-----
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Gesendet: Montag, 24. Juni 2002 16:33
An: [EMAIL PROTECTED]
Betreff: [IMail Forum] OT: Can I check if the user is able to view html-mail ?


Hello list,
we want to do some E-Mailings soon (sending out emails in html and or plain-text). 
Someone told me he knows a tool that can check, if the user is able to view emails in 
html or in plain text. I doubt this very much. I always thought the client is the one 
who is the deciding factor. Any comments on this issue ?

Thanks.

Uwe


Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

An Archive of this list is available at: 
http://www.mail-archive.com/imail_forum%40list.ipswitch.com/

Please visit the Knowledge Base for answers to frequently asked
questions:  http://www.ipswitch.com/support/IMail/

Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

An Archive of this list is available at: 
http://www.mail-archive.com/imail_forum%40list.ipswitch.com/

Please visit the Knowledge Base for answers to frequently asked
questions:  http://www.ipswitch.com/support/IMail/

Please visit http://www.ipswitch.com/support/mailing-lists.html
to be removed from this list.

An Archive of this list is available at:
http://www.mail-archive.com/imail_forum%40list.ipswitch.com/

Please visit the Knowledge Base for answers to frequently asked
questions:  http://www.ipswitch.com/support/IMail/

Reply via email to