This commit is contained in:
2022-02-12 23:57:35 +01:00
parent 4e4ebc1fb5
commit 51e5eda637
2 changed files with 2 additions and 1 deletions
@@ -171,6 +171,7 @@
{
if (!this.submitBlocked)
{
this.setState('loading');
this.$emit('submit', this, e);
}
},
+1 -1
View File
@@ -87,7 +87,7 @@ public class MailProvider : IMailProvider
await Render(message);
dispatcher.Enqueue(message);
await dispatcher.Send(token);
Logger.LogInformation("Dispatched email (template: {template}) to {recipient}", message.Template?.Alias ?? "none", message.To);
Logger.LogInformation("Dispatched email (template: {template}) to {recipient} (cc: {cc}, bcc: {bcc})", message.Template?.Alias ?? "none", message.To, message.CC, message.Bcc);
}
catch (Exception ex)
{