[Radiant] Mailer extension causes problems

2007-05-08 Thread Artur Baldyga
I've followed with tutorial from: http://dev.radiantcms.org/radiant/wiki/HowToUseMailerExtension When I send the email error appeared: "Error encountered while trying to send email. 550-Verification failed for 550-Unrouteable address 550 Sender verify failed.". Someone had such a problems in the

Re: [Radiant] Mailer extension causes problems

2007-05-08 Thread Sean Cribbs
Artur, You should try changing the transport method. It's possible that the address the form is being sent to is disallowed via sendmail or your SMTP server. You can change the transport method in config/environment.rb or config/production.rb (assuming you're running in production). This pag

Re: [Radiant] Mailer extension causes problems

2007-05-08 Thread Walter Lee Davis
What version of Radiant are you using? Sean just posted today that he hasn't updated Mailer to the new version yet. Walter On May 8, 2007, at 1:18 PM, Artur Baldyga wrote: > I've followed with tutorial from: > > http://dev.radiantcms.org/radiant/wiki/HowToUseMailerExtension > > When I send the

Re: [Radiant] Mailer extension causes problems

2007-05-08 Thread Artur Baldyga
Walter Davis wrote: > What version of Radiant are you using? Sean just posted today that he > hasn't updated Mailer to the new version yet. > > Walter Radiant CMS version 0.6.1 -- Posted via http://www.ruby-forum.com/. ___ Radiant mailing list Post:

Re: [Radiant] Mailer extension causes problems

2007-05-08 Thread Hans de Graaff
On Tue, 08 May 2007 12:59:27 -0500, Sean Cribbs wrote: > You can change the transport method in config/environment.rb or > config/production.rb (assuming you're running in production). This page > has more information on configuring ActionMailer: Actually that doesn't seem to work due to the ha

Re: [Radiant] Mailer extension causes problems

2007-05-08 Thread Artur Baldyga
Following Hans'es guides I've added to config/eniroment.rb file line: ActionMailer::Base.delivery_method = :sendmail Now emails are sending and everything is going fine. Thanks a lot! Another question: Is there possibility to check if some field in form is empty and the don't send form?? --

Re: [Radiant] Mailer extension causes problems

2007-05-08 Thread Sean Cribbs
Artur, No, but I've considered adding it. As with other extensions, we'd accept patches. Sean Artur Baldyga wrote: > Following Hans'es guides I've added to config/eniroment.rb file line: > > ActionMailer::Base.delivery_method = :sendmail > > Now emails are sending and everything is going fine.