wp_mail_succeeded

动作钩子
do_action( 'wp_mail_succeeded', $mail_data )
参数
  • (array) $mail_data { An array containing the email recipient(s), subject, message, headers, and attachments. @type string[] $to Email addresses to send message. @type string $subject Email subject. @type string $message Message contents. @type string[] $headers Additional headers. @type string[] $attachments Paths to files to attach. }
    Required:
定义位置
相关勾子
wp_mail_failedwp_mail_charsetwp_mail_content_typewp_mailwp_mail_from
相关方法
wp_next_scheduledwp_mailwp_handle_sideloadwp_audio_shortcodewp_get_schedulewp_clear_scheduled_hook
引入
5.9.0
弃用
-

wp_mail_succeeded: 这是一个 WordPress 的钩子,它在电子邮件发送成功后触发。您可以通过这个钩子执行自己的代码,以便检查邮件是否成功发送并执行任何其他所需的操作。

在PHPMailer成功发送了一封邮件后触发。

这个动作的启动不一定意味着收件人成功收到了邮件。它只意味着上面的send方法能够处理请求而没有任何错误。

do_action( 'wp_mail_succeeded', $mail_data );

常见问题

FAQs
查看更多 >