I’m trying to develop an app that sends email, and our internal network is locked down pretty tight, so I can’t relay using our internal mail servers.
Has anyone ever used something like no-ip.com? Are there any other alternatives?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you just need to check that the e-mails are being sent to the correct addresses and with the correct contents, the easiest way is to use a drop folder by editing the app or web.config file:
This will result in the e-mails being created as files in the specified directory. You can even then load the files and verify them as part of a unit test.
(As codekaizen points out, this can also be done in code if you don’t mind modifying the code/hardcoding the drop folder and having the behavior differing in debug/release mode.)