- 
                Notifications
    
You must be signed in to change notification settings  - Fork 83
 
activitypub_new_dm_email
        github-actions[bot] edited this page Aug 18, 2025 
        ·
        8 revisions
      
    Fires at the bottom of the new direct message emails.
/**
 * Fires at the bottom of the new direct message emails.
 *
 * @param array $args 
 */
function my_activitypub_new_dm_email_callback( array $args ) {
    // Your code here.
}
add_action( 'activitypub_new_dm_email', 'my_activitypub_new_dm_email_callback' );- 
array$argsThe template arguments. 
do_action( 'activitypub_new_dm_email', $args )Follow @activitypub.blog@activitypub.blog for updates and news.