feat: add email to existing account, change password

This commit is contained in:
sam 2024-12-13 21:25:41 +01:00
parent 77c3047b1e
commit 1cf2619393
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
13 changed files with 227 additions and 20 deletions

View file

@ -32,6 +32,7 @@ public class AddEmailMailable(Config config, AddEmailMailableView view)
{
To(view.To)
.From(config.EmailAuth.From!)
.Subject("Confirm adding this email address to an existing account")
.View("~/Views/Mail/AddEmail.cshtml", view)
.Text(PlainText());
}