Browse: Home / Hooks /

ld_group_email_users_after

do_action( 'ld_group_email_users_after',  array $mail_args,  boolean $success )

Fires after sending user group email.


Description #


Parameters #

$mail_args

(array) Mail arguments.

$success

(boolean) Whether the email contents were sent successfully.


Source #

File: includes/ld-groups.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for ld_group_email_users_after action.
 */
add_action(
	'ld_group_email_users_after',
	function( $mail_args, $success ) {
		// May add any custom logic using $mail_args, $success

	},
	10,
	2
);