Gossamer Forum
Home : Products : DBMan : Customization :

Pull an email to "sign_up success"

Quote Reply
Pull an email to "sign_up success"
hello again here,
Is it possible to pull an email address from html_signup_form page to html_signup_success page.
So,after people sign up the new account,in the html_signup_success, it will show their email there

Thank you again here
Quote Reply
Re: Pull an email to "sign_up success" In reply to
I'm assuming you're using the secure password lookup mod, because otherwise there wouldn't be an email address to show.

In sub signup, change

Code:
&html_signup_success;

to

Code:
&html_signup_success($in{'email'});

At the beginning of sub html_signup success, add

Code:
my ($email) = $_[0];

Then use the variable $email wherever you want it to print out.


------------------
JPD