i need to demo an application on my laptop running windows 7 enterprise. The application is supposed to send mail. How can i setup a local smtp server to send mail from and be able to recieve it in my outlook on the machine. I need to be able to do this while not connected to the internet for the demo.
相关问题
- Django & Amazon SES SMTP. Cannot send email
- How to add sender name before sender address in py
- TCL Email Script doesn't deliver in Activestat
- Is the SMTP virtual server deprecated in IIS 7?
- error while sending mail using javamail
相关文章
- c#发送邮件,附件损坏
- com.sun.mail.smtp.SMTPSenderFailedException: 550 5
- Outlook SMTPClient server error 5.3.4 5.2.0
-
553 5.7.1
: Sender address rejected: not - Send email from my custom mailgun SMTP address
- Sending email using xampp localhost
- SmtpClient in C# using smtp.Gmail.com:857 with Goo
- SMTP client Java program
XMail or hMailServer should do the trick.
More details on this previous question.
Local smtp only: smtp4dev (similar to papercut)
The application catches everything sent to it, but does not send emails over the internet.
As for me the best option is https://www.npmjs.com/package/maildev
A painless smtp server running on node. Therefore you need to install node, but it actually send an email to any smtp server.
Papercut is pretty active (last release on Jun 25, 2015):
You can also try smtp4dev:
You can also (for a demo) user the 'specifiedPickupDirectory' setting to leverage the same code, but drop the email message off to a local folder, alleviating the need for an actual SMTP server, but being able to demonstrate that the email is generated as expected.
MSDN: http://msdn.microsoft.com/en-us/library/ms164241.aspx
You can send email using Telnet or implement the protocol using socket programming.
Refer to http://www.softwareandfinance.com/Visual_CPP/TelnetEmail.html