This commit is contained in:
Wyatt Miller 2018-11-26 03:55:24 -05:00
parent 9e5f62952e
commit cb5e516361
4 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -68,7 +68,7 @@ namespace DeskHubSharp
using (var client = new SmtpClient())
{
client.Connect("smtp.gmail.com", 465, SecureSocketOptions.SslOnConnect);
client.Authenticate(_from, "IhaveanAMDRX580");
client.Authenticate(_from, "password");
client.Send(message);
client.Disconnect(true);
}