Re-applying change from 6ea2b8c7f4 (Log error when Recipient emailMessage.Recipients is null)

This commit is contained in:
Benedek Farkas 2024-03-08 18:28:53 +01:00
parent 52b40538ce
commit 0e1129ec74

View File

@ -57,7 +57,7 @@ namespace Orchard.Email.Services {
Cc = Read(parameters, "CC")
};
if (emailMessage.Recipients.Length == 0) {
if (string.IsNullOrWhiteSpace(emailMessage.Recipients)) {
Logger.Error("Email message doesn't have any recipient");
return;
}