我想从本地服务器发送电子邮件(到“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
感谢您的帮助: - )