|   | MailSend(String, String, String, String, Boolean, String, String, SecureString) Method | 
        
        
            Sends a secure 
Mail message.
            
 GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic static void Send(
	string from,
	string toRecipients,
	string subject,
	string body,
	bool isBodyHtml,
	string smtpServer,
	string username,
	SecureString password
)
Public Shared Sub Send ( 
	from As String,
	toRecipients As String,
	subject As String,
	body As String,
	isBodyHtml As Boolean,
	smtpServer As String,
	username As String,
	password As SecureString
)
public:
static void Send(
	String^ from, 
	String^ toRecipients, 
	String^ subject, 
	String^ body, 
	bool isBodyHtml, 
	String^ smtpServer, 
	String^ username, 
	SecureString^ password
)
static member Send : 
        from : string * 
        toRecipients : string * 
        subject : string * 
        body : string * 
        isBodyHtml : bool * 
        smtpServer : string * 
        username : string * 
        password : SecureString -> unit GSF.Net.Smtp.Mail.Send = function(from, toRecipients, subject, body, isBodyHtml, smtpServer, username, password);
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.
- username  String
- The username of the account used to authenticate to the SMTP server.
- password  SecureString
- The password of the account used to authenticate to the SMTP server.
 See Also
See Also