PHP code example of rdelbem / wp-mailer-class

1. Go to this page and download the library: Download rdelbem/wp-mailer-class library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

rdelbem / wp-mailer-class example snippets


$send_mail = new WPMailerClass( 1, 'Amazing subject!', 'Amazing message!' );
$send_mail->sendEmail();

$send_mail = new WPMailerClass( '[email protected]', 'Amazing subject!', 'Amazing message!' );
$send_mail->sendEmail();

$send_mail = new WPMailerClass( '[email protected]', 'Amazing subject!', 'Amazing message!' );
$result = $send_mail->sendEmail();

if($result instanceof WP_Error){
    error_log($result->get_error_message()); // this will log 'WPMailerClass could not send email'
}