'How to send SMTP message from Onion SMTP server
I try to send mail with SMTP from onion smtp (mail2tor service), but it doesnt working, I just dont get this mail.
SmtpClient Smtp = new SmtpClient("smtp.xc7tgk2c5onxni2wsy76jslfsitxjbbptejnqhw6gy2ft7khpevhc7ad.onion", 25);
Smtp.Credentials = new NetworkCredential("[email protected]", "********");
Smtp.EnableSsl = false;
MailMessage Message = new MailMessage();
Message.From = new MailAddress("[email protected]");
Message.To.Add(new MailAddress("[email protected]"));
Message.Subject = "test";
Message.Body = "test test";
Smtp.Send(Message);
I expect, that this mail will send to my mail. I try to check settings in mail2tor, if they are require confirmation for third party applications. I try to use other ports, like 587, 465 I try to enable/disable SSL
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
