Click or drag to resize

IEmailerSendMailCC Method


Sends an email, with the ability to "CC" and "BCC" other recipients.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntax
void SendMailCC(
	string from,
	string to,
	string cc,
	string bcc,
	string subject,
	string body,
	bool htmlMail,
	bool allowSendToCurrentUser = false
)

Parameters

from  String
Sender address
to  String
Recipient addresses
cc  String
Addresses to be CCed
bcc  String
Addresses to be BCCed
subject  String
Email subject
body  String
Email body
htmlMail  Boolean
Specifies whether the email body is HTML
allowSendToCurrentUser  Boolean  (Optional)
Specifies whether to allow the email to be sent to the Current User. Default false.
Remarks
Recipient addresses can be a semicolon-delimited list (";").
See Also