Argentini.Halide.H3EmailTemplate.PrepareAndSendMail C# (CSharp) Method

PrepareAndSendMail() public method

Performs Find and Replace on the e-mail template file used in constructor, then sends the e-mail.
public PrepareAndSendMail ( string sender, string senderName, string recipient, string ccList, string bccList, string subject, Halide bodyFormat ) : string
sender string The e-mail address of the sender
senderName string The name of the sender
recipient string The e-mail of the recipient
ccList string List of recipients to get copied
bccList string List of recipients to get blind copied
subject string The subject of the msg
bodyFormat Halide MailFormat value for message body format.
return string
        public string PrepareAndSendMail(string sender, string senderName, string recipient, string ccList, string bccList, string subject, Halide.H3Email.MailFormat bodyFormat)
        {
            return PrepareAndSendMail(sender, senderName, recipient, ccList, bccList, subject, bodyFormat, null);
        }

Same methods

H3EmailTemplate::PrepareAndSendMail ( string sender, string senderName, string recipient, string ccList, string bccList, string subject, Halide bodyFormat, ArrayList attachments ) : string