Ok, here is what I have. I am using the simple PayPal buttons provided by Couch.
Everything works fine, except that the success/confirmation email is not sent.
Here is the code:
The email never arrives. This should be straightforward stuff, not sure why it is not working
p.s. On a side note, when using
When I use hardcoded values, that same email works? Why is that? I am talking about regular contact form here, not paypal related.
Everything works fine, except that the success/confirmation email is not sent.
Here is the code:
- Code: Select all
<cms:paypal_processor>
<cms:if k_paypal_success>
<cms:send_mail from=pp_receiver_email to=pp_payer_email subject='Thank you for your purchase!' >
Dear <cms:show pp_first_name /> <cms:show pp_last_name />,
Thank you for buying <cms:show pp_item_name />.
Please allow up to 3 days for vouchers to be sent to your address.
</cms:send_mail>
</cms:if>
<cms:if k_paypal_error>
<cms:set msg="ERROR: <cms:show k_paypal_error/>" />
<cms:log msg />
</cms:if>
</cms:paypal_processor>
The email never arrives. This should be straightforward stuff, not sure why it is not working

p.s. On a side note, when using
- Code: Select all
k_email_from
- Code: Select all
k_email_to
- Code: Select all
send_mail
When I use hardcoded values, that same email works? Why is that? I am talking about regular contact form here, not paypal related.

