Created
August 15, 2019 13:57
-
-
Save ngohungphuc/7481d2da0f48101ddc5ea0451f8d704f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private readonly IOptions<EmailSettings> _emailSetting; | |
| public EmailSender(IOptions<EmailSettings> emailSetting) | |
| { | |
| _emailSetting = emailSetting; | |
| } | |
| email.From.Add(new MailboxAddress(_emailSetting.Value.SenderName, _emailSetting.Value.Sender)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment