Hello @blairsawler
Please go to Global Settings > Global Notification, click on Manage for Payment Completed(User).
Enable the notification, it will send necessary payment details to the user.
Kindly check the option and let us know if it fulfils your requirement.
Thanks @easyregistrationforms
I would like to have some details from the registration form passed over to that, other than payment details. Is that possible?
Is there anything I can add to the Offline email as well? There does not seem to be anything there.
Thanks
Hi,
There is no such configuration to include additional information with configuration. However there is a hook (filter) which you can use to insert any dynamic values in the message body. Below is the hook:
$message= apply_filters(‘erf_offline_email’,$message,$submission);
You have to add a filter in your functions.php file. There are few other emails:
1. Payment Pending:
$message= apply_filters(‘erf_pending_pay_email_msg’,$message);
2. Payment Completed:
$message= apply_filters(‘erf_completed_pay_email_msg’,$message);
However in the above two filters, We do not pass submission details. They will be included in our next release.
Let me know if you have any more questions.