Home / Admin / MemebrPress: Send MemberPress Welcome Email Only When Transaction Is Completed
Duplicate Snippet

Embed Snippet on Your Site

MemebrPress: Send MemberPress Welcome Email Only When Transaction Is Completed

The code snippet will allow the global welcome email to be triggered only following the successful completion of a transaction in MemberPress. The global welcome email can be set under the Send Welcome Email option at Dashboard > MemberPress > Settings > Emails tab.

Code Preview
php
<?php
function send_welcome_email_on_transaction_completed($event) {
    $txn = $event->get_data(); // Get the transaction data
    MeprUtils::send_notices($txn, 'MeprUserWelcomeEmail', null, true); // Send the welcome email
}
add_action('mepr-event-transaction-completed', 'send_welcome_email_on_transaction_completed');

Comments

Add a Comment