Mantén la atención ya que en este enunciado vas a hallar el hallazgo que buscas.
Ejemplo 1: envío de correo electrónico usando C#
usingSystem;usingSystem.Windows.Forms;usingSystem.Net.Mail;namespaceWindowsApplication1publicpartialclassForm1:FormpublicForm1()InitializeComponent();privatevoidbutton1_Click(object sender,EventArgs e)tryMailMessage mail =newMailMessage();SmtpClient SmtpServer =newSmtpClient("smtp.gmail.com");
mail.From =newMailAddress("[email protected]");
mail.To.Add("to_address");
mail.Subject ="Test Mail";
mail.Body ="This is for testing SMTP mail from GMAIL";
SmtpServer.Port =587;
SmtpServer.Credentials =newSystem.Net.NetworkCredential("username","password");
SmtpServer.EnableSsl =true;
SmtpServer.Send(mail);
MessageBox.Show("mail Send");catch(Exception ex)
MessageBox.Show(ex.ToString());
Ejemplo 2: system.net.mail envía un mensaje html
msg =newMailMessage("[email protected]","[email protected]","Message from PSSP System","This email sent by the PSSP system
"+"this is bold text!");
msg.IsBodyHtml =true;
Si haces scroll puedes encontrar las acotaciones de otros sys admins, tú igualmente puedes mostrar el tuyo si te gusta.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)