SmtpMail.Send Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sends an email message. Recommended alternative: System.Net.Mail.
Overloads
Send(MailMessage) |
Sends an email message using arguments supplied in the properties of the MailMessage class. Recommended alternative: System.Net.Mail. |
Send(String, String, String, String) |
Sends an email message using the specified destination parameters. Recommended alternative: System.Net.Mail. |
Send(MailMessage)
Sends an email message using arguments supplied in the properties of the MailMessage class. Recommended alternative: System.Net.Mail.
public:
static void Send(System::Web::Mail::MailMessage ^ message);
public static void Send(System.Web.Mail.MailMessage message);
static member Send : System.Web.Mail.MailMessage -> unit
Public Shared Sub Send (message As MailMessage)
Parameters
- message
- MailMessage
The MailMessage to send.
Exceptions
The mail cannot be sent.
The Send(MailMessage) method requires the Microsoft Windows NT, Windows 2000, or Windows XP operating system.
Applies to
Send(String, String, String, String)
Sends an email message using the specified destination parameters. Recommended alternative: System.Net.Mail.
public:
static void Send(System::String ^ from, System::String ^ to, System::String ^ subject, System::String ^ messageText);
public static void Send(string from, string to, string subject, string messageText);
static member Send : string * string * string * string -> unit
Public Shared Sub Send (from As String, to As String, subject As String, messageText As String)
Parameters
- from
- String
The address of the email sender.
- to
- String
The address of the email recipient.
- subject
- String
The subject line of the email message.
- messageText
- String
The body of the email message.
Exceptions
The Send(String, String, String, String) method requires the Microsoft Windows NT, Windows 2000, or Windows XP operating system.