send mails from asp.net pages

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

  1. #1

    Default send mails from asp.net pages

    how can I send mails from asp.net pages?


    Duy Nguyen Guest

  2. Similar Questions and Discussions

    1. How to actively 'send' web pages to client browser
      Does anyone know if a way to deliver web pages to an end-client using a push method that can be controlled from your PC (by clicking on a page menu...
    2. using cdo to send mails in Arabic
      I have recently developed bilingual content management site. I have extensive used cdosys component for mails The mail programmes are working...
    3. send out bulk e-mails
      I have a couple of databases. In both of these databases I have an e-mail field. I would like to send out an e-mail to every address in those...
    4. send multipart alternative mails using MIME::Entity
      Can someone send me some examples on how to send multipart alternative mails using MIME::Entity Thanks Ram
    5. mail() sending mails twice to the e-mails addresses at BCC
      Hi there! As I explained yesterday I am developing a group of pages to let users send mails from them. For that I am using the mail() function....
  3. #2

    Default Re: send mails from asp.net pages

    Web.Mail.SmtpServer = "smtp.smtpmailsserverdomain.com";
    MailMessage mail = new MailMessage();
    mail.To = [email]you@yourdomain.com[/email];
    mail.From = [email]Me@mydomain.com[/email];
    mail.Subject = "Testing eMail";
    mail.Body = "<h1>Testing ASP.NET mail</h1>";
    SmtpMail.Send(mail);

    "Duy Nguyen" <itvdnxp@hotmail.com> wrote in message
    news:uRyXMgjXDHA.1492@TK2MSFTNGP12.phx.gbl...
    > how can I send mails from asp.net pages?
    >
    >

    MS News \(MS ILM\) Guest

  4. #3

    Default Re: send mails from asp.net pages


    [url]http://aspalliance.com/andrewmooney/default.aspx?article=13[/url]

    With this sample you can send an email from an ASP.NET web page. Just fill in
    the From, To, Server, Subject, and Message on the form and click submit.
    Result #2 Email with ASP.NET

    [url]http://aspalliance.com/jnuckolls/articles/ASPemail/default.aspx[/url]
    Here you will learn different ways to enable email functionality into your
    ASP.NET web pages.
    Result #3 Sending Emails With ASP.NET

    [url]http://aspalliance.com/hrmalik/articles/2002/200206/20020601.aspx[/url]

    "Duy Nguyen" <itvdnxp@hotmail.com> wrote in message
    news:uRyXMgjXDHA.1492@TK2MSFTNGP12.phx.gbl...
    how can I send mails from asp.net pages?



    Ken Cox [Microsoft MVP] 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