v7.0.0.3
What's Changed
- Azure communication services EmailSender by @andriikaplanovskyi in #10
- Correlation Id Support added by @andriikaplanovskyi in #13
- SendGrid EmailSender fixes by @andriikaplanovskyi in #14
Full Changelog: v7.0.0.2...v7.0.0.3
Description
Azure communication services EmailSender
Added Azure Communication Email Sender.
Correlation Id Support
Correlation Id Support added to SendGrid and AzureCommService email senders.
IEmailSender interface: SendEmailAsync now returns the correlation id, which can be used to track an e-mail in external systems (like in SendGrid on in Azure Communication service)
AzureCommService Emails provider: an extra configuration option DoNotWaitTillOperationCompleted is added:
- When DoNotWaitTillOperationCompleted is true, we just pass the e-mail to communication services and do not wait till the e-mail is acutally sent.
- When DoNotWaitTillOperationCompleted is false, we do wait till the e-mail is acutally sent (takes longer).