diff --git a/TASVideos.Core/Services/Email/SmtpSender.cs b/TASVideos.Core/Services/Email/SmtpSender.cs index bdbffcb4e..6051b0056 100644 --- a/TASVideos.Core/Services/Email/SmtpSender.cs +++ b/TASVideos.Core/Services/Email/SmtpSender.cs @@ -45,7 +45,7 @@ public async Task SendEmail(IEmail email) private MimeMessage BccList(IEmail email) { var recipients = email.Recipients.ToList(); - var from = env.IsProduction() ? "noreply" : $"TASVideos {env.EnvironmentName} environment noreply"; + var from = env.IsProduction() ? "TASVideos" : $"TASVideos {env.EnvironmentName} environment"; var message = new MimeMessage(); message.From.Add(new MailboxAddress(from, _settings.Email));