|
MailSend(String, String, String, String, Boolean, String, String) Method
|
Namespace: GSF.Net.SmtpAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic static void Send(
string from,
string toRecipients,
string subject,
string body,
bool isBodyHtml,
string attachments,
string smtpServer
)
Public Shared Sub Send (
from As String,
toRecipients As String,
subject As String,
body As String,
isBodyHtml As Boolean,
attachments As String,
smtpServer As String
)
public:
static void Send(
String^ from,
String^ toRecipients,
String^ subject,
String^ body,
bool isBodyHtml,
String^ attachments,
String^ smtpServer
)
static member Send :
from : string *
toRecipients : string *
subject : string *
body : string *
isBodyHtml : bool *
attachments : string *
smtpServer : string -> unit
GSF.Net.Smtp.Mail.Send = function(from, toRecipients, subject, body, isBodyHtml, attachments, smtpServer);
View SourceParameters
- from String
- The e-mail address of the Mail message sender.
- toRecipients String
- A comma-separated or semicolon-separated e-mail address list of the Mail message recipients.
- subject String
- The subject of the Mail message.
- body String
- The body of the Mail message.
- isBodyHtml Boolean
- true if the Mail message body is to be formated as HTML; otherwise false.
- attachments String
- A comma-separated or semicolon-separated list of file names to be attached to the Mail message.
- smtpServer String
- The name or IP address of the SMTP server to be used for sending the Mail message.
See Also