Browse Source

Update EmailSenderBase.cs

https://github.com/abpframework/abp/pull/6000
pull/6001/head
maliming 6 years ago
committed by GitHub
parent
commit
47c98ce036
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/EmailSenderBase.cs

2
framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/EmailSenderBase.cs

@ -69,7 +69,7 @@ namespace Volo.Abp.Emailing
);
}
public async Task QueueAsync(string from, string to, string subject, string body, bool isBodyHtml = true)
public virtual async Task QueueAsync(string from, string to, string subject, string body, bool isBodyHtml = true)
{
if (!BackgroundJobManager.IsAvailable())
{

Loading…
Cancel
Save