You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HTMLHelper.cs 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Diligent.WebAPI.Business.Helper
  7. {
  8. public static class HTMLHelper
  9. {
  10. public static string RenderForgotPasswordPage(string url)
  11. {
  12. return "<div style=\"font-family: sans-serif\">" +
  13. "<div style=\"font-family: sans-serif;text-align: center;\">" +
  14. "<h2 style=\"color: #017397;\">HR Center Password Reset</h2>" +
  15. "<p style=\"font-size: 20px\">" +
  16. "To reset your HR Center password, please click on the button below." +
  17. "</p>" +
  18. "<a style = \"color: white;text-decoration:none;background-color: #017397;cursor: pointer;font-size: 20px;width: 220px;text-align: center;border-radius: 5px;padding: 5px 15px;height: 25px;\" " +
  19. $"href=\"{url}\">" +
  20. " RESET PASSWORD" +
  21. "</a>" +
  22. "<p style = \"font-size: 12px; margin-top: 25px;\" >" +
  23. "Please do not reply to this email.This message was sent from a notification-only address that is not monitored." +
  24. "</p>" +
  25. "</div>" +
  26. "</div>";
  27. }
  28. public static string RenderRegisterPage(string url)
  29. {
  30. return "<div style=\"font-family: sans-serif\">" +
  31. "<div style=\"font-family: sans-serif;text-align: center;\">" +
  32. "<h2 style=\"color: #017397;\">Welcome to HR Center</h2>" +
  33. "<p style=\"font-size: 20px\">" +
  34. "To register, please click on the button below." +
  35. "</p>" +
  36. "<a style = \"color: white;text-decoration:none;background-color: #017397;cursor: pointer;font-size: 20px;width: 220px;text-align: center;border-radius: 5px;padding: 5px 15px;height: 25px;\" " +
  37. $"href=\"{url}\">" +
  38. " Click here to register" +
  39. "</a>" +
  40. "<p style = \"font-size: 12px; margin-top: 25px;\" >" +
  41. "Please do not reply to this email.This message was sent from a notification-only address that is not monitored." +
  42. "</p>" +
  43. "</div>" +
  44. "</div>";
  45. }
  46. }
  47. }