0
maggieryanmail@gmail.com created
- ABP Framework version: v7.3.0
- UI Type: Blazor Server
- Database System: EF Core
Hello,
I am using the built in EmailSender to send emails in my Blazor Server app. I need to set a different 'Reply To' email address than the 'From' email address. Is this possible? Thank you!
await _emailSender.SendAsync(
email,
subject,
body);
1 Answer(s)
-
0
Hello ,
Yes it is possible but you have to cusomize code at your end you can check here https://learn.microsoft.com/en-us/dotnet/api/system.net.mail.mailmessage?view=net-9.0
This is the document of IEMailSender please check.
Thank you.