使用Redmine的Action Mailer发送电子邮件

时间:2013-04-11 10:25:41

标签: ruby-on-rails ruby redmine redmine-plugins

我想从本地服务器发送电子邮件(到“admin@admin.com”):

我的问题是如何将Redmine的Action Mailer用于我的插件,因为当我使用其他Action Mailer时,我必须配置它们(这不好)。

@nouvelle_remarque = Remarque.new
@nouvelle_remarque = Remarque.create(:project_id => @project.id ,
                                   :version_id => params[:version] ,
                                   :numero => params[:numero] ,
                                   :phase => params[:phase] )
if @nouvelle_remarque.save
    flash[:notice] ="ok"
    # ....... code of sending a new mail
  else
    flash[:error] ="ko"
  end

感谢您的帮助: - )

0 个答案:

没有答案