fix: move sender name to Reply-To

This commit is contained in:
Oliver Booth 2024-10-20 04:07:36 +01:00
parent ee8a2cb569
commit 5d10f251a8
Signed by: oliverbooth
GPG Key ID: 2A862C3F46178E8E

View File

@ -61,9 +61,9 @@ public class ContactController : Controller
{
await sender.WriteEmail
.To("Oliver Booth", _destination.Get<string>())
.From(name, _sender.Get<string>())
.ReplyTo(email)
.Subject($"[Contact via Website] {subject}")
.From("Contact via Website", _sender.Get<string>())
.ReplyTo(name, email)
.Subject(subject)
.BodyText(message)
.SendAsync();
}