Ask a Question related to ASP.NET General, Design and Development.
-
Paul Turley #1
Sending HTML formatted mail using CDONTS
Does anyone have some sample code for sending an HTML formatted message
using CDONTS?
Thanks
RE: Sending HTML formatted mail using CDONTS
--
Paul Turley, MCSD, MCAD, MCT, MSF Practitioner, A+ Technician
[email]paul@createsolutions.net[/email]
Paul Turley Guest
-
Sending Attachement using APS Cdonts
Hi I have a program which is used to send a mail with a attachment using cdonts when i attach a word file and send it ,i have the following... -
[PHP] Problem sending HTML formated mail
Juan -- ...and then Juan Carlos Borrero said... % % Hi People Hi! % -
Problem sending HTML formated mail
Hello Use a mail class to send your mail instead of mail. These classes have a lot of workarounds for mail() problems and are fairly easy to... -
Sending message to SMTP server using CDONTS component
I recently set up a web site which I am running locally on my laptop using ASP.Net. From a web form on the site I am attempting to send an email... -
CDONTS-Sending HTML mail-8000 character limit
Hi all, I have seen a few messages about this in the archives, but none provide a comprehensive answer. Basically, I want to use CDONTS mail... -
Krissy #2
Re: Sending HTML formatted mail using CDONTS
CDONTS is more ASP rather than .NET
If you want ASP.NET try
Dim oEml As New Web.Mail.MailMessage()
oEml.To = "joe.blo@somewhere.com"
oEml.From = [email]anyone@domain.com[/email]
oEml.Subject = "VERY IMPORTANT"
oEml.BodyFormat = MailFormat.Html
oEml.Body = "<html><font size=7 color=red>HTML is Cool!!</font></html>"
Web.Mail.SmtpMail.SmtpServer = "localhost"
Web.Mail.SmtpMail.Send(oEml)
"Paul Turley" <paul@createsolutions.net> wrote in message
news:OX4o4sIYDHA.2308@TK2MSFTNGP12.phx.gbl...> Does anyone have some sample code for sending an HTML formatted message
> using CDONTS?
>
> Thanks
>
>
> RE: Sending HTML formatted mail using CDONTS
>
> --
> Paul Turley, MCSD, MCAD, MCT, MSF Practitioner, A+ Technician
> [email]paul@createsolutions.net[/email]
>
>
>
Krissy Guest
-
Parker Zhang [MSFT] #3
RE: Sending HTML formatted mail using CDONTS
Hello,
It is suggested to use System.Web.Mail.
If you would like to use CDONTS, please refer to the following link. The
link is for ASP, but after some changes, you can use it for ASP.NET.
[url]http://msdn.microsoft.com/library/en-us/dnproasp2/html/usingcdofornts.asp[/url]
HTH,
--
Parker Zhang
Microsoft Developer Support
This posting is provided "AS IS" with no warranties, and confers no rights.
Parker Zhang [MSFT] Guest



Reply With Quote

