You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ConsEco/Sources/Modele/Email.cs

35 lines
1.0 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Mail;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class Email
{
public static void CreateMail(string destinator, string code)
{
NetworkCredential login;
SmtpClient client;
MailMessage msg;
login = new NetworkCredential("consEco.team@gmail.com", "wtowzznfclupjgfl");
client = new SmtpClient("smtp.gmail.com");
client.Port = 587;
client.EnableSsl = true;
client.Credentials = login;
msg = new MailMessage { From = new MailAddress("consEco.team@gmail.com", "ConsEco", Encoding.UTF8) };
msg.To.Add(destinator);
msg.Subject = "sujet";
msg.Body = code;
msg.BodyEncoding = Encoding.UTF8;
msg.IsBodyHtml = true;
msg.Priority = MailPriority.Normal;
client.SendAsync(msg, "sending ...");
}
}
}