diff --git a/OFBButte.Infrastructure/Email/EmailSender.cs b/OFBButte.Infrastructure/Email/EmailSender.cs index a2beb83..b3b3e22 100644 --- a/OFBButte.Infrastructure/Email/EmailSender.cs +++ b/OFBButte.Infrastructure/Email/EmailSender.cs @@ -30,8 +30,8 @@ namespace OFBButte.Infrastructure.Email bodyBuilder.HtmlBody = message.Body; mm.Body = bodyBuilder.ToMessageBody(); - client.Connect("smtp.webfaction.com", 465, true); - client.Authenticate("ofbcontact", "2014OfbPwd"); + client.Connect("smtp.ionos.com", 587, false); + client.Authenticate("app@ofbbutte.com", "(app&email*sender)Q1"); await client.SendAsync(mm); client.Disconnect(true); }