Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

HTMLHelper.cs 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. public static string RenderTagPage(string url)
  47. {
  48. return "<div>" +
  49. "<a style = \"color: white;text-decoration:none;background-color: #017397;cursor: pointer;font-size: 20px;border-radius: 5px;padding: 5px 15px;height: 25px;margin-top:10px;\" " +
  50. $"href=\"{url}\">" +
  51. "Click here to see the comment" +
  52. "</a>" +
  53. "</div>";
  54. }
  55. }
  56. }