wp_mail_succeeded

wp_mail_succeeded

Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('wp_mail_succeeded') is found 1 times:

  • /wp-includes/pluggable.php line 567
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
         *     @type string[] $headers     Additional headers.
         *     @type string[] $attachments Paths to files to attach.
         * }
         */
        do_action( 'wp_mail_succeeded', $mail_data );
     
        return $send;
    } catch ( PHPMailer\PHPMailer\Exception $e ) {
        $mail_data['phpmailer_exception_code'] = $e->getCode();
     
        /**