Sending HTML formatted mail using CDONTS

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. [PHP] Problem sending HTML formated mail
      Juan -- ...and then Juan Carlos Borrero said... % % Hi People Hi! %
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139