Hi
I have a webform where users register their name and e-mail address (and some other fields).
Is it possible to send a reminder to the e-mail address which the user submitted through the webform?
What I have done so far is enabled the Form Events module that comes with Rules, activated "Forms where events are activated: Webform emails form" created a triggered rule which uses the event "Webform emails form is submitted".
Created one condition "Form element 'e_post' value check" (is it possible to check if that field contains an @?)
And a DO : "Send a mail to an arbitrary mail address" (is it possible to use the address which the user submitted throug the webform?)
Is this even possible? :-)
Thanks
minus
Comments
Comment #1
quicksketchI don't use or support Rules module, I'm moving this support request over there.
Comment #2
mitchell commented...
Comment #3
stborchertHi minus.
Try creating a rule reacting on "After a webform has been submitted" and trigger a scheduled ruleset that sends a reminder to the email entered in the webform.
You can access the mail either with tokens or with PHP (see help in rules). To get the structure of the submitted data from webform you can use Devel and
<?php dpm($data); ?>.Comment #4
stborchert