Hi,

Thank for this great module Robin Millette. Exactly what I need.

Just a minor request. When you click on the link to confirm and then click "Yes, That was me", it redirects to /node which is not always true. It should be redirected to or it should be configured.

In addition, when click on "No, someone is using my email address without my knowledge.", it said Sorry, not implemented yet. Try contact. "contact" in this case is a link to /contact which not always the case. There should be a place to change this message and the link so that it can be used on production site?

THanks

Comments

bombo’s picture

Title: Confirmation destination page » Same in d7

Hi, this little Module is awesome, thank you very much.
I face the same problem in dev version for d7 and i just can't find the function where i could set the confirmation page after clicking on "Yes, That was me" without breaking the sending of confirmation mails. Can anyone help or give a hint?

Thanks

bombo’s picture

Title: Same in d7 » Confirmation page not set after "Yes. That was me"

Sorry, changed title...

matthias_mo’s picture

Right now, there is no functionality in webform_confirm_email to set the redirect page after the user confirmed his/her email address.

This feature is on my todo list and maybe I'll find time to work on the module this weekend, but don't hold your breath.

As a quick (and dirty) solution you might want to edit the file webform_confirm_email.module, go to line 196 and change the line

  $form_state['redirect'] = 'node';

to something like

  $form_state['redirect'] = 'your/path/to/your/redirect/site';
matthias_mo’s picture

Status: Active » Closed (fixed)

implemented in 7.x-1.0 ;-)

vako’s picture

Wish it can also be implemented for D6. Even though I use D7 now, but a lot of my older sites are in D6. Thank you.

  • Commit f0393aa on 7.x-1.x, 7.x-2.x by matthias_mo:
    Issue #1559752 by truyenle: it's now possible to set the redirect URL...
  • Commit cb3a6c7 on 7.x-1.x, 7.x-2.x by matthias_mo:
    Issue #1559752 by truyenle: display redirect URLs also in the webform...