So I have my first ever Ruby website up and running and would like it to send out emails. Unforantately it is hosted on Heroku which doesn't have a email server which is free to use.
What I do have is a windows 2008 virtual server that runs other websites I have. These websites already make use of the smtp server that is part of windows server. They have access (asp.net projects) by simply having my web.config pointing at itself as the server
<smtp>
<network host="localhost" port="25" />
</smtp>
I assume it is authenticating it as the user logged in, and this is how is currently is allowed to do it. If I wanted to make use of it from the project on heroku, how would I go about doing that.
What IIS/SMTP server setup would I need to do in windows? And What code do I need to go about making use of it in my ruby project?
Thanks in advance