ローカル サーバーから ("admin@admin.com" に) メールを送信したい:
問題は、プラグインに Redmine のアクション メーラーを使用する方法です。他のアクション メーラーを使用する場合、両方を構成する必要があるためです。 (よくない)。
@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
手伝ってくれてありがとう :-)