tools/wordpress-mail-function-generator
WordPress Mail Function Generator
WordPress Mail Function Generator is a tool that simplifies sending emails on your WordPress site.
snippet.php
// Send an email through wp_mail() $to = array( 'recipient@example.com' ); $subject = ''; $message = ''; $headers = array( 'Content-Type: text/plain; charset=UTF-8', ); // wp_mail() returns false when the mailer refuses the message. The reason is // not in the return value; hook 'wp_mail_failed' to read the WP_Error. $sent = wp_mail( $to, $subject, $message, $headers );