Is there any way I can have someone fill out a form, then pay with Paypal, and only have the form submitted after the payment is processed through Paypal?
Thanks!
Thanks!
Mako88 wrote: Is there any way I can have someone fill out a form, then pay with Paypal, and only have the form submitted after the payment is processed through Paypal?
Thanks!
Mako88 wrote: How would I save the form data in a cloneable page?
Basically I have a membership form that requires a fee. I'd like the users to be able to fill out the form, then click a "pay with Paypal" button. Then after they enter their paypal info and confirm the amount, have the form submitted and bring them back to the form page with a "thank you, your payment has been processed and your membership form submitted" message.
Thanks!
Mako88 wrote: So can I put the paypal processor tag inside the k_success tag of a form and use the variables set by the form inside it to send an email?
<cms:paypal_processor debug='1' file='_logs/log-paypal.html' >
<cms:log "<cms:dump />" file='_logs/log-inside.html' /><cms:hide>variables available on outside call</cms:hide>
<cms:if k_paypal_success>
<cms:send_mail from=pp_receiver_email
to=pp_payer_email
bcc=k_email_to
subject='Thank you for your purchase at my store!'
debug='1'
logfile='_logs/log-mail.html'
html='0' >
Dear <cms:show pp_first_name /> <cms:show pp_last_name />,
Thank you for purchasing <cms:show pp_item_name />.
Please, reply to this message.
Regards, Admin
</cms:send_mail>
</cms:if><cms:hide>/end of k_paypal_success</cms:hide>
<cms:if k_paypal_error>
<cms:set msg="******************PAYPAL ERROR: <cms:show k_paypal_error/>***********************" />
<cms:log msg />
</cms:if>
</cms:paypal_processor>
Mako88 wrote: Yeah, that's what it looks like it would take :/
For this use-case it's not worth that amount of work, so I'm just gonna not worry about it.
Thanks again for all your help!