IEmailerSendMailCC Method
|
Sends an email, with the ability to "CC" and "BCC" other recipients.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxvoid SendMailCC(
string from,
string to,
string cc,
string bcc,
string subject,
string body,
bool htmlMail,
bool allowSendToCurrentUser = false
)
Sub SendMailCC (
from As String,
to As String,
cc As String,
bcc As String,
subject As String,
body As String,
htmlMail As Boolean,
Optional allowSendToCurrentUser As Boolean = false
)
void SendMailCC(
String^ from,
String^ to,
String^ cc,
String^ bcc,
String^ subject,
String^ body,
bool htmlMail,
bool allowSendToCurrentUser = false
)
abstract SendMailCC :
from : string *
to : string *
cc : string *
bcc : string *
subject : string *
body : string *
htmlMail : bool *
?allowSendToCurrentUser : bool
(* Defaults:
let _allowSendToCurrentUser = defaultArg allowSendToCurrentUser false
*)
-> unit 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.
RemarksRecipient addresses can be a semicolon-delimited list (";").
See Also