Displaying 1 result from an estimated 1 matches for "frocco".
Did you mean:
rocco
2005 Dec 21
0
help with sending email form
...ontroller < ApplicationController
def index
@p = params[:index]
Notifier::deliver_signup_thanks(@p)
end
end
***********************************************************
class Notifier < ActionMailer::Base
def signup_thanks(p)
# Email header info MUST be added here
@recipients = "frocco-J3C02bkCjkfYtjvyW6yDsg@public.gmane.org"
@from = "accounts-NNbln4oHrFpl57MIdRCFDg@public.gmane.org"
@subject = "Thank you for registering with our website"
# Email body substitutions go here
@body = p.email
end
end
_______________________________________________
Rai...