class Notifier < ActionMailer::Base default :from => "no-reply@joindiaspora.com" def new_request(recipient, sender) @receiver = recipient @sender = sender mail(:to => recipient.email) do |format| format.text { render :text => "This is text!" } format.html { render :text => "

#{@receiver.person.profile.first_name}This is HTML

" } end end end