Skip to content

Commit

Permalink
replace "noreply" with "TASVideos" for the name of our emails (#2027)
Browse files Browse the repository at this point in the history
  • Loading branch information
Masterjun3 authored Nov 5, 2024
1 parent 6d40afb commit b2e1671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TASVideos.Core/Services/Email/SmtpSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down

0 comments on commit b2e1671

Please sign in to comment.