Skip to content

Commit

Permalink
Fix broker invitation
Browse files Browse the repository at this point in the history
  • Loading branch information
filipbekic01 committed Sep 26, 2024
1 parent 8acb11f commit ae5bd0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private static string GenerateRandomString(int length)
private async Task SendEmail(User currentUser, string token)
{
var message = new MimeMessage();
message.From.Add(new MailboxAddress("ResQueue", "resqueue@no-reply.io"));
message.From.Add(new MailboxAddress("ResQueue", "no-reply@resqueue.io"));
message.To.Add(new MailboxAddress(currentUser.UserName, currentUser.Email));
message.Subject = "ResQueue — Broker Invitation";

Expand Down

0 comments on commit ae5bd0a

Please sign in to comment.