Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Using Blat or MailMessage()
Message
De
30/08/2011 14:07:34
 
 
À
30/08/2011 14:00:53
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Divers
Thread ID:
01522297
Message ID:
01522302
Vues:
35
Thanks for the code Bill. I hadn't come across SMTPMailer before.

>I'm a rank web newbie and I was able to get a contact page to send emails to site owner is less than an hour using SMTPMailer.
>
>Here's the code
>
>
>
>   SMTPMailer smtpMailer = new SMTPMailer();
>     public string SMTPServer = ConfigurationSettings.AppSettings["SMTPServer"];
>     public string SMTPUser = ConfigurationSettings.AppSettings["SMTPUser"];
>     public string SMTPNotifyAddress = ConfigurationSettings.AppSettings["SMTPNotifyAddress"];
>     public string SMTPPassword = ConfigurationSettings.AppSettings["SMTPPassword"];
>    protected void ButtonSend_Click(object sender, EventArgs e)
>    {
>      string mailbody = "Email from :" + TextBoxFirstName.Text.TrimEnd() + " " + TextBoxLastName.Text.TrimEnd() + Environment.NewLine;
>
>      mailbody += "Company: " + TextBoxCompany.Text.TrimEnd() + Environment.NewLine;
>      mailbody += "State: " + DropDownListStates.SelectedValue + Environment.NewLine;  
>      LabelMailStatus.Text  =  smtpMailer.SendMailMessasge(SMTPNotifyAddress,  TextBoxEmail.Text.TrimEnd(), "Test Send Subject", SMTPServer,
>      SMTPUser,SMTPPassword,"", mailbody);   
>    
>    }
>
Frank.

Frank Cazabon
Samaan Systems Ltd.
www.samaansystems.com
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform