Files
boredcareers/src/Server/Services/EmailService/CompanyVerifyEmail.cs
T
2025-09-23 20:56:32 -07:00

40 lines
2.3 KiB
C#
Executable File

namespace BoredCareers.Services {
public partial class EmailService {
// @UserName
// @VerifyPassword
// https://mistox.com/api/account/verifyemail?UserName=@UserName&Guid=@VerifyPassword
public static string CompanyVerifyEmailSubject = "Verify Your Email Address";
public static string CompanyVerifyEmailBody = @"
<!DOCTYPE html>
<html lang=""en"">
<head>
<meta charset=""UTF-8"">
<meta name=viewport content=""width=device-width, initial-scale=1.0"">
<title>Verify Your Email</title>
</head>
<body style=""font-family: Arial, sans-serif; background-color: oklch(.1 .065 264); margin: 0; padding: 0;"">
<div role=""presentation"" style=""max-width: 600px; width: 100%; background-color: oklch(.15 .065 264); margin: 100px auto; border-radius: 8px; border: solid 1px oklch(.5 .13 264)"">
<div style=""padding: 20px; text-align: center; background-color: oklch(.5 .13 264); color: oklch(.96 .1 264); border-top-left-radius: 8px; border-top-right-radius: 8px;"">
<h2>Verify Email Request</h2>
</div>
<div style=""padding: 20px; text-align: left; font-size: 16px; color: oklch(.76 .1 264);"">
<p>Hi @CompanyName,</p>
<p>Thank you for connecting your company to our service</p>
<p>In order to start listing opportunities we need to verify your email address by clicking the link below:</p>
<p style=""text-align: center;"">
<a href=""https://boredcareers.com/api/company/verifyemail?CompanyID=@ID&EmailToken=@VerifyPassword"" style=""background-color: oklch(.76 .13 84); color: #ffffff; text-decoration: none; padding: 15px 25px; font-size: 16px; border-radius: 5px; display: inline-block;"">Verify Email</a>
</p>
<p>If you didn't link a company to your account please ignore this email.</p>
<p>Best regards</p>
</div>
<div style=""padding: 10px; text-align: center; background-color: oklch(.15 .065 264); color: #888888; font-size: 12px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px;"">
<p>If you have any questions, feel free to <a href=""mailto:webmaster@mistox.com"" style=""color: oklch(.76 .13 84); text-decoration: none;"">contact support</a>.</p>
</div>
</div>
</body>
";
}
}