Click or drag to resize

MailSend(String, String, String, String, Boolean, String) Method

Sends a Mail message.

Namespace: GSF.Net.Smtp
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static void Send(
	string from,
	string toRecipients,
	string subject,
	string body,
	bool isBodyHtml,
	string smtpServer
)
View Source

Parameters

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.
smtpServer  String
The name or IP address of the SMTP server to be used for sending the Mail message.
See Also