From 1414588abca68db992306fb0e4ebdc3fd7d5ffad Mon Sep 17 00:00:00 2001 From: Oren Novotny Date: Fri, 24 Jan 2020 14:21:23 -0500 Subject: [PATCH] Update email alias --- Membership/MemberInvitation/email-template.html | 4 ++-- Membership/Services/UsersService.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Membership/MemberInvitation/email-template.html b/Membership/MemberInvitation/email-template.html index 46b119f..651d57e 100644 --- a/Membership/MemberInvitation/email-template.html +++ b/Membership/MemberInvitation/email-template.html @@ -155,7 +155,7 @@

Thanks from the .NET Foundation team!

#dotnetlovesme

- This membership process is new, so let us know (contact@dotnetfoundation.org) if you have problems or suggestions. Pull requests accepted! + This membership process is new, so let us know (membership@dotnetfoundation.org) if you have problems or suggestions. Pull requests accepted!

In case e-mail mangled that link, you can paste this into your browser: {{action}} @@ -176,7 +176,7 @@ .NET Foundation, 1 Microsoft Way, Redmond WA, 90852 -
You're receiving this e-mail because you've applied for membership. Unsubscribe +
You're receiving this e-mail because you've applied for membership. Unsubscribe diff --git a/Membership/Services/UsersService.cs b/Membership/Services/UsersService.cs index 5770bfa..65358c0 100644 --- a/Membership/Services/UsersService.cs +++ b/Membership/Services/UsersService.cs @@ -176,7 +176,7 @@ public async Task UpdateMemberActiveAsync(string id, bool isActive) public async Task InviteMember(string displayName, string firstName, string emailAddress) { - const string emailSender = "jon@dotnetfoundation.org"; + const string emailSender = "membership@dotnetfoundation.org"; const string emailSubject = ".NET Foundation: Please Activate Your Membership"; const string redirectUrl = "https://members.dotnetfoundation.org/Profile";