Browse Source
Merge pull request #6001 from abpframework/maliming-patch-1
Make QueueAsync virtual.
pull/6012/head
liangshiwei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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()) |
|
|
|
{ |
|
|
|
|