using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Diligent.WebAPI.Business.Helper { public static class HTMLHelper { public static string RenderForgotPasswordPage(string url) { return "
" + "
" + "

HR Center Password Reset

" + "

" + "To reset your HR Center password, please click on the button below." + "

" + "" + " RESET PASSWORD" + "" + "

" + "Please do not reply to this email.This message was sent from a notification-only address that is not monitored." + "

" + "
" + "
"; } public static string RenderRegisterPage(string url) { return "
" + "
" + "

Welcome to HR Center

" + "

" + "To register, please click on the button below." + "

" + "" + " Click here to register" + "" + "

" + "Please do not reply to this email.This message was sent from a notification-only address that is not monitored." + "

" + "
" + "
"; } } }