Skip to content

Instantly share code, notes, and snippets.

@franz-josef-kaiser
Last active November 27, 2023 08:38
Show Gist options
  • Star 22 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save franz-josef-kaiser/5840282 to your computer and use it in GitHub Desktop.
Save franz-josef-kaiser/5840282 to your computer and use it in GitHub Desktop.
WP Mail Error/Exception handling and SMTP settings
<?php
defined( 'ABSPATH' ) OR exit;
/**
* Plugin Name: (WCM) PHPMailer Exceptions & SMTP
* Description: WordPress by default returns <code>FALSE</code> instead of an <code>Exception</code>. This plugin fixes that.
*/
add_action( 'phpmailer_init', 'WCMphpmailerException' );
function WCMphpmailerException( $phpmailer )
{
if ( ! defined( 'WP_DEBUG' ) OR ! WP_DEBUG )
{
$phpmailer->SMTPDebug = 0;
$phpmailer->debug = 0;
return;
}
if ( ! current_user_can( 'manage_options' ) )
return;
// Enable SMTP
# $phpmailer->IsSMTP();
$phpmailer->SMTPDebug = 2;
$phpmailer->debug = 1;
$data = apply_filters(
'wp_mail',
compact( 'to', 'subject', 'message', 'headers', 'attachments' )
);
// Show what we got
current_user_can( 'manage_options' )
AND print htmlspecialchars( var_export( $phpmailer, true ) );
$error = null;
try
{
$sent = $phpmailer->Send();
! $sent AND $error = new WP_Error( 'phpmailer-error', $sent->ErrorInfo );
}
catch ( phpmailerException $e )
{
$error = new WP_Error( 'phpmailer-exception', $e->errorMessage() );
}
catch ( Exception $e )
{
$error = new WP_Error( 'phpmailer-exception-unknown', $e->getMessage() );
}
if ( is_wp_error( $error ) )
return printf(
"%s: %s",
$error->get_error_code(),
$error->get_error_message()
);
}
<?php
defined( 'ABSPATH' ) OR exit;
/**
* Plugin Name: (WCM) PHPMailer SMTP Settings
* Description: Enables SMTP servers, SSL/TSL authentication and SMTP settings.
*/
add_action( 'phpmailer_init', 'phpmailerSMTP' );
function phpmailerSMTP( $phpmailer )
{
# $phpmailer->IsSMTP();
# $phpmailer->SMTPAuth = true; // Authentication
# $phpmailer->Username = '';
# $phpmailer->Password = '';
# $phpmailer->SMTPSecure ='ssl'; // enable if required, 'tls' is another possible value
# $phpmailer->Host = ''; // SMTP Host
# $phpmailer->Port = 26; // SMTP Port
}
@renoirb
Copy link

renoirb commented Feb 13, 2014

+1 to be in the core!

@mrizwanghuman
Copy link

Nice

@jfernandez5
Copy link

jfernandez5 commented Jul 7, 2017

Hello, i'm new in wordpress , can you tell me where i should put this file and how load it please? (wpmail_exceptions.php)

@Inigovd
Copy link

Inigovd commented Oct 26, 2017

Hey, the following line is included twice:
$phpmailer->Host = '';

Nice gist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment