How to send confirmation email after payment made via paypal?
To send an email, check out wp_mail(); For example: $to = ‘[email protected]’; $subject=”The subject”; $body = ‘The email body content’; $headers = array(‘Content-Type: text/html; charset=UTF-8’); wp_mail( $to, $subject, $body, $headers ); As for when a confirmation is made, it might be best to customize the return url on the form – see setting the return … Read more