Sends a mail message, in a single line of code.
This method allows the developer to send a mail message without needing to create an instances of Smtp component and MailMessage class.
The message will be sent in direct send mode. MailBee will discover SMTP servers of recipients domains via DNS MX lookup, and then send the message directly to these SMTP MX servers. No dedicated SMTP relay server is used.
DNS servers for MX lookup are taken either from the config file (such as app.config, web.config, or machine.config) or from operating system settings if the config file contains no DNS server definitions. See Autodetect method for more information.
Note Although this method is static, it still requires valid license key be assigned to the Smtp class. The developer can set the key either in the config file or in the code (by setting LicenseKey property value).
| Exception Type | Condition |
|---|---|
| MailBeeException | An error occurred. |
This sample composes and sends an HTML mail message with an attachment in a single line of code.
[C#] MailBee.SmtpMail.Smtp.QuickSend("John Doe <jdoe@domain.com>", "Kathy Smith <kathy.smith@company.com>", "The requested document", null, "<html>Please find the report in the attached document</html>", null, @"C:\My Documents\report.doc");
[Visual Basic] MailBee.SmtpMail.Smtp.QuickSend("John Doe <jdoe@domain.com>", _ "Kathy Smith <kathy.smith@company.com>", "The requested document", Nothing, _ "<html>Please find the report in the attached document</html>", Nothing, _ "C:\My Documents\report.doc")
Smtp Class | MailBee.SmtpMail Namespace | Smtp.QuickSend Overload List | Send