Ask a Question related to ASP.NET General, Design and Development.
-
Duy Nguyen #1
send mails from asp.net pages
how can I send mails from asp.net pages?
Duy Nguyen Guest
-
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... -
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... -
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... -
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 -
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.... -
MS News \(MS ILM\) #2
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
-
Ken Cox [Microsoft MVP] #3
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



Reply With Quote

