I have written a mailer, when i call:
MyMailer.deliver_welcome("Name", "[email protected]" )
I successfully send an email to the address that i specify.
I have written a mail recieving client that lives in MyMailer called
recieve. I can successfully recieve mail with it.
I am trying to write a "Thanks for the message, we have received it"
email that replies back the sender of an email. But this line of code
inside of my MyMailer does not work:
def receive(email)
MyMailer.deliver_welcome("Name", "[email protected]" )
end
Both pieces of code work great separately, but when i try to call the
deliver_welcome method from within the ActionMailer model i created, for
some reason it never executes or never executes-properly.
Rails 2.2.2, Ruby 1.8.6, any insight would be tremendously helpful!
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---