|   | Mail(String, String) Constructor | 
        
        
            Initializes a new instance of the 
Mail class.
            
 GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic Mail(
	string from,
	string toRecipients
)
Public Sub New ( 
	from As String,
	toRecipients As String
)
public:
Mail(
	String^ from, 
	String^ toRecipients
)
new : 
        from : string * 
        toRecipients : string -> MailGSF.Net.Smtp.Mail = function(from, toRecipients);
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.
 See Also
See Also