Skip to content

Instantly share code, notes, and snippets.

View panterch's full-sized avatar

Beat Seeliger panterch

View GitHub Profile
@panterch
panterch / ActionMailer Test.rb
Created December 22, 2008 11:39
actionmailer testmail
class Notifier < ActionMailer::Base
def test(recipient)
recipients recipient
from 'notifier@example.com'
subject 'test mail'
body 'test'
end
end
Notifier.deliver_test('x@example.com')