﻿HHus.Web.EmailClass = function(toAddress, toDisplayName, fromAddress, fromDisplayName, toMobileNumber, subjectTemplate, body, link, captchaKey, captchaText, emailTemplateID) {
    this.ToAddress = toAddress;
    this.ToDisplayName = toDisplayName;
    this.FromAddress = fromAddress;
    this.FromDisplayName = fromDisplayName;
    this.MobileNumber = toMobileNumber;
    this.SubjectTemplate = subjectTemplate
    this.Body = body;
    this.Link = link;
    this.CaptchaKey = captchaKey;
    this.CaptchaText = captchaText;
    this.EmailTemplateID = emailTemplateID;
}
