Update image URLs.

This commit is contained in:
Jared Goodwin 2020-02-29 15:47:59 -08:00
parent 718375674f
commit 6df814ef50
5 changed files with 5 additions and 5 deletions

View File

@ -282,7 +282,7 @@ namespace Remotely.Server.API
var inviteURL = $"{Request.Scheme}://{Request.Host}/Invite?id={newInvite.ID}";
await EmailSender.SendEmailAsync(invite.InvitedUser, "Invitation to Organization in Remotely",
$@"<img src='https://remotely.one/images/Remotely_Logo.png'/>
$@"<img src='https://remotely.one/media/Remotely_Logo.png'/>
<br><br>
Hello!
<br><br>

View File

@ -66,7 +66,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account
await _emailSender.SendEmailAsync(
Input.Email,
"Reset Password",
$"<img src='https://remotely.one/images/Remotely_Logo.png'/><br><br>Please reset your Remotely password by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
$"<img src='https://remotely.one/media/Remotely_Logo.png'/><br><br>Please reset your Remotely password by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
return RedirectToPage("./ForgotPasswordConfirmation");
}

View File

@ -143,7 +143,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account.Manage
await _emailSender.SendEmailAsync(
email,
"Confirm your email",
$"<img src='https://remotely.one/images/Remotely_Logo.png'/><br><br>Please confirm your Remotely account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
$"<img src='https://remotely.one/media/Remotely_Logo.png'/><br><br>Please confirm your Remotely account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
StatusMessage = "Verification email sent. Please check your email.";
return RedirectToPage();

View File

@ -143,7 +143,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account.Manage
var inviteURL = $"{Request.Scheme}://{Request.Host}/Invite?id={newInvite.ID}";
await EmailSender.SendEmailAsync(invite.InvitedUser, "Invitation to Organization in Remotely",
$@"<img src='https://remotely.one/images/Remotely_Logo.png'/>
$@"<img src='https://remotely.one/media/Remotely_Logo.png'/>
<br><br>
Hello!
<br><br>

View File

@ -103,7 +103,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account
protocol: Request.Scheme);
await _emailSender.SendEmailAsync(Input.Email, "Confirm your email",
$"<img src='https://remotely.one/images/Remotely_Logo.png'/><br><br>Please confirm your Remotely account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
$"<img src='https://remotely.one/media/Remotely_Logo.png'/><br><br>Please confirm your Remotely account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
if (_userManager.Options.SignIn.RequireConfirmedAccount)
{