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.3.169
Syntax void 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
- Type: SystemString
Sender address - to
- Type: SystemString
Recipient addresses - cc
- Type: SystemString
Addresses to be CCed - bcc
- Type: SystemString
Addresses to be BCCed - subject
- Type: SystemString
Email subject - body
- Type: SystemString
Email body - htmlMail
- Type: SystemBoolean
Specifies whether the email body is HTML - allowSendToCurrentUser (Optional)
- Type: SystemBoolean
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 Reference
[!:Ingeniux.CMS.Ingeniux.CMS.IEmailer.SendMail]