- Home
·
- Miscellaneous
·
- Sometimes sending mails using an SMTP server is not feasible for a project¡s requirement. We may wa
Sometimes sending mails using an SMTP server is not feasible for a project¡s requirement. We may wa
Sometimes sending mails using an SMTP server is not feasible for a project¡s requirement. We may want to utilize the MX record of the
Rate Sometimes sending mails using an SMTP server is not feasible for a project¡s requirement. We may wa
(1(1 Vote))
MailMessage msg = new MailMessage();
msg.From = "[email protected]";
msg.To = "[email protected];[email protected]";
msg.Subject = "dns sending";
msg.Body = "it is a test.";
DnsMailClient client = new DnsMailClient();
client.Send(msg);
[VB.NET]
Dim msg As MailMessage = New MailMessage()
msg.From = "[email protected]"
msg.To = "[email protected];[email protected]"
msg.Subject = "dns sending"
msg.Body = "it is a test.
Dim client As DnsMailClient = New DnsMailClient()
client.Send(msg)
Sometimes sending mails using an SMTP server is not feasible for a project¡s requirement. We may wa Comments
No comments yet — be the first to post one!
Post a Comment