Skip to content

Instantly share code, notes, and snippets.

@ngohungphuc
Created August 15, 2019 13:57
Show Gist options
  • Select an option

  • Save ngohungphuc/7481d2da0f48101ddc5ea0451f8d704f to your computer and use it in GitHub Desktop.

Select an option

Save ngohungphuc/7481d2da0f48101ddc5ea0451f8d704f to your computer and use it in GitHub Desktop.
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