SmtpClientSend Method (String, String, String, String) |
Creates and sends the specified message.
Namespace:
Aspose.Email.Clients.Smtp
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 22.4
Syntaxpublic void Send(
string from,
string recipients,
string subject,
string body
)
Public Sub Send (
from As String,
recipients As String,
subject As String,
body As String
)
public:
void Send(
String^ from,
String^ recipients,
String^ subject,
String^ body
)
member Send :
from : string *
recipients : string *
subject : string *
body : string -> unit
Parameters
- from
- Type: SystemString
A String that contains the address of message sender. - recipients
- Type: SystemString
A String that contains the address of recipients. - subject
- Type: SystemString
A subject of message. - body
- Type: SystemString
A body of message.
See Also