• Resolved firefly007

    (@firefly007)


    Any way I can let the order confirm also go to a business address every time? To alert the company that they have to go, order and deliver…

    Let me know!

Viewing 6 replies - 16 through 21 (of 21 total)
  • elfin

    (@elfin)

    eShop send the IPN with each order, you don’t need to set it up at paypal.

    Will that email my Paypal email when I receive payments?

    If the IPN isn’t working then eShop can’t send emails out – but will not in any way shape or form affect paypal sending you emails.

    And why does it say Transfered money instead of Payments?

    no idea, I’m not a Paypal expert.

    theemonkey

    (@theemonkey)

    I’ll try

    add_action('eshop_send_customer_email','myeshop_copy_email',10,4);
    function myeshop_copy_email($csubject, $this_email, $headers, $array){
     $to='YOUREMAILADDRESS';
     wp_mail($to, $csubject, $this_email,$headers);
    }

    I saw the

    https://quirm.net/wiki/eshop/merchant-gateways/

    which did something similar.

    In one of your posts you said to add it to the Functions file in my “theme” in my theme or plugin? Just not really sure how it would help in my theme? I’ll try adding it now and see if it works.

    theemonkey

    (@theemonkey)

    I’m pretty sure it’ll work because I have no clue about PHP. And a “Function” file sounds like

    add_action('eshop_send_customer_email','myeshop_copy_email',10,4);
    function myeshop_copy_email($csubject, $this_email, $headers, $array){
     $to='YOUREMAILADDRESS';
     wp_mail($to, $csubject, $this_email,$headers);
    }

    Is going to just send me an email anytime the databases happens to send someone else an email?

    theemonkey

    (@theemonkey)

    Thanks for all the help so far.

    theemonkey

    (@theemonkey)

    I finally got it to work. Thanks. I used both of the codes. The one you gave me and the old one. Thanks alot man. And BTW I’m only 14. But am upgrading my clients website. https://handmadebyerika.com/ That was my first site I ever created from scratch and was pretty proud of it but I run a blog and thought it would be smarter to go that way since now there is a handful of products and I can’t maintain creating a new HTML page for each new one. So yeah. If I ever seemed confusing or high there you go. I’m 14.

    elfin

    (@elfin)

    good news.

Viewing 6 replies - 16 through 21 (of 21 total)
  • The topic ‘eshop Plugin — Send order confirmation to a system email’ is closed to new replies.