Re: Ruby On Rails ActionMailer - emails not being delevered

I’ve solved this, Thank you to everyone who has viewed or replied to
this post.

If you’re having problems sending email using ActionMailer try the
following.

Set your config file like this -

ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.server_settings = {
:address => “relay.plus.net”,
:port => 25,
:domain => “www.plus.net”,
}

Restart WEBrick and try sending an email to an address which isn’t
forwarded by
you domain host (I used a email address from my ISP). If this is
successful then
change the “from” address in the notification model your using to
something
random and try sending an email to the original address.

It worked for me!!!

Good luck.

Ben

Fri Feb 16 20:13 , ‘Steve L.’ [email protected] sent: