How does one use an exchange server to -
- Send an email from a rails application
- Authenticate credentials (user name / password)
Thanks.
How does one use an exchange server to -
Thanks.
(Disclaimer: I know next to nothing about Microsoft Exchange.)
If you can use Exchange as an SMTP server then it should just be a question of configuring ActionMailer's SMTP settings appropriately. See http://guides.rubyonrails.org/action%5Fmailer%5Fbasics.html#action-mailer-configuration
Using Exchange as an SMTP server is an option as indicated by John, but starting with Exchange Server 2007, it has a feature called Exchange Web Services - EWS for short.
EWS may give more control over what is sent than SMTP, but on the other hand, SMTP may be a simpler choice and good enough for your scenario.