diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2017-10-17 12:11:01 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2017-10-17 12:11:01 +0000 |
commit | 263bc7987e090b0b25d241fa6951f32b8eb2552f (patch) | |
tree | 8ee9ded48d8abc15fd09655fd7a42097c2adf751 /Postman/Postman-Mail | |
parent | f69ba14997be3e8cc5ac86a1da74c1f29756d9df (diff) | |
download | Post-SMTP-263bc7987e090b0b25d241fa6951f32b8eb2552f.zip |
= 1.7.6 - 2017-10-17
* Missing sendgrid files
* Fixed: Localization slug
* Minor typo
Diffstat (limited to 'Postman/Postman-Mail')
-rw-r--r-- | Postman/Postman-Mail/PostmanMyMailConnector.php | 176 |
1 files changed, 87 insertions, 89 deletions
diff --git a/Postman/Postman-Mail/PostmanMyMailConnector.php b/Postman/Postman-Mail/PostmanMyMailConnector.php index 203fbf5..151deed 100644 --- a/Postman/Postman-Mail/PostmanMyMailConnector.php +++ b/Postman/Postman-Mail/PostmanMyMailConnector.php @@ -1,182 +1,181 @@ <?php -define ( 'MYMAIL_POSTMAN_REQUIRED_VERSION', '2.0' ); -define ( 'MYMAIL_POSTMAN_ID', 'postman' ); +define( 'MYMAIL_POSTMAN_REQUIRED_VERSION', '2.0' ); +define( 'MYMAIL_POSTMAN_ID', 'postman' ); /** * Enables MyMail to deliver via Postman * * @author jasonhendriks - * */ -if (! class_exists ( 'PostmanMyMailConnector' )) { +if ( ! class_exists( 'PostmanMyMailConnector' ) ) { class PostmanMyMailConnector { - + // PostmanLogger private $logger; - + /** * No-argument constructor */ - public function __construct($file) { - register_activation_hook ( $file, array ( + public function __construct( $file ) { + register_activation_hook( $file, array( $this, - 'activate' + 'activate', ) ); - register_deactivation_hook ( $file, array ( + register_deactivation_hook( $file, array( $this, - 'deactivate' + 'deactivate', ) ); - - add_action ( 'init', array ( + + add_action( 'init', array( $this, - 'init' + 'init', ), 1 ); } - + /** * Initialize the Connector */ public function init() { - if (! defined ( 'MYMAIL_VERSION' ) || version_compare ( MYMAIL_POSTMAN_REQUIRED_VERSION, MYMAIL_VERSION, '>' )) { + if ( ! defined( 'MYMAIL_VERSION' ) || version_compare( MYMAIL_POSTMAN_REQUIRED_VERSION, MYMAIL_VERSION, '>' ) ) { // no-op } else { // create an instance of the Logger - $this->logger = new PostmanLogger ( get_class ( $this ) ); - $this->logger->debug ( 'Starting' ); - - add_filter ( 'mymail_delivery_methods', array ( + $this->logger = new PostmanLogger( get_class( $this ) ); + $this->logger->debug( 'Starting' ); + + add_filter( 'mymail_delivery_methods', array( &$this, - 'delivery_method' + 'delivery_method', ) ); - add_action ( 'mymail_deliverymethod_tab_postman', array ( + add_action( 'mymail_deliverymethod_tab_postman', array( &$this, - 'deliverytab' + 'deliverytab', ) ); - - if (mymail_option ( 'deliverymethod' ) == MYMAIL_POSTMAN_ID) { - add_action ( 'mymail_initsend', array ( + + if ( mymail_option( 'deliverymethod' ) == MYMAIL_POSTMAN_ID ) { + add_action( 'mymail_initsend', array( &$this, - 'initsend' + 'initsend', ) ); - add_action ( 'mymail_presend', array ( + add_action( 'mymail_presend', array( &$this, - 'presend' + 'presend', ) ); - add_action ( 'mymail_dosend', array ( + add_action( 'mymail_dosend', array( &$this, - 'dosend' + 'dosend', ) ); - add_action ( 'MYMAIL_POSTMAN_cron', array ( + add_action( 'MYMAIL_POSTMAN_cron', array( &$this, - 'reset' + 'reset', ) ); } } } - + /** * initsend function. * * uses mymail_initsend hook to set initial settings * * @access public - * @param mixed $mailobject + * @param mixed $mailobject * @return void */ - public function initsend($mailobject) { - $this->logger->trace ( 'initsend' ); + public function initsend( $mailobject ) { + $this->logger->trace( 'initsend' ); // disable dkim $mailobject->dkim = false; } - + /** * presend function. * * uses the mymail_presend hook to apply setttings before each mail * * @access public - * @param mixed $mailobject + * @param mixed $mailobject * @return void */ - public function presend($mailobject) { - + public function presend( $mailobject ) { + // embedding images doesn't work $mailobject->embed_images = false; - + // use pre_send from the main class // need the raw email body to send so we use the same option - $mailobject->pre_send (); + $mailobject->pre_send(); } - + /** * dosend function. * * uses the mymail_dosend hook and triggers the send * * @access public - * @param mixed $mailobject + * @param mixed $mailobject * @return void */ - public function dosend($mailobject) { - $this->logger->trace ( 'dosend' ); - $this->logger->trace ( $mailobject->mailer ); - + public function dosend( $mailobject ) { + $this->logger->trace( 'dosend' ); + $this->logger->trace( $mailobject->mailer ); + // create a PostmanWpMail instance - $postmanWpMail = new PostmanWpMail (); - $postmanWpMail->init (); - + $postmanWpMail = new PostmanWpMail(); + $postmanWpMail->init(); + // create a PostmanMessage instance - $message = $postmanWpMail->createNewMessage (); - $message->addHeaders ( $mailobject->headers ); - $message->setBodyTextPart ( $mailobject->mailer->AltBody ); - $message->setBodyHtmlPart ( $mailobject->mailer->Body ); - $message->setBody ( $mailobject->mailer->AltBody . $mailobject->mailer->Body ); - $message->setSubject ( $mailobject->subject ); - $message->addTo ( $mailobject->to ); - $message->setReplyTo ( $mailobject->reply_to ); - $message->setAttachments ( $mailobject->attachments ); - + $message = $postmanWpMail->createNewMessage(); + $message->addHeaders( $mailobject->headers ); + $message->setBodyTextPart( $mailobject->mailer->AltBody ); + $message->setBodyHtmlPart( $mailobject->mailer->Body ); + $message->setBody( $mailobject->mailer->AltBody . $mailobject->mailer->Body ); + $message->setSubject( $mailobject->subject ); + $message->addTo( $mailobject->to ); + $message->setReplyTo( $mailobject->reply_to ); + $message->setAttachments( $mailobject->attachments ); + // create a PostmanEmailLog instance - $log = new PostmanEmailLog (); - + $log = new PostmanEmailLog(); + // send the message and store the result - $mailobject->sent = $postmanWpMail->sendMessage ( $message, $log ); - + $mailobject->sent = $postmanWpMail->sendMessage( $message, $log ); + // give error message back to MyMail - $result = apply_filters ( 'postman_wp_mail_result', null ); - if (! $mailobject->sent) { - $mailobject->set_error ( $result ['exception']->getMessage () ); + $result = apply_filters( 'postman_wp_mail_result', null ); + if ( ! $mailobject->sent ) { + $mailobject->set_error( $result ['exception']->getMessage() ); } } - + /** * reset function. * * resets the current time * * @access public - * @param mixed $message + * @param mixed $message * @return array */ public function reset() { - update_option ( '_transient__mymail_send_period_timeout', false ); - update_option ( '_transient__mymail_send_period', 0 ); + update_option( '_transient__mymail_send_period_timeout', false ); + update_option( '_transient__mymail_send_period', 0 ); } - + /** * delivery_method function. * * add the delivery method to the options * * @access public - * @param mixed $delivery_methods + * @param mixed $delivery_methods * @return void */ - public function delivery_method($delivery_methods) { - $delivery_methods [MYMAIL_POSTMAN_ID] = __ ( 'Postman SMTP', Postman::TEXT_DOMAIN ); + public function delivery_method( $delivery_methods ) { + $delivery_methods [ MYMAIL_POSTMAN_ID ] = __( 'Postman SMTP', Postman::TEXT_DOMAIN ); return $delivery_methods; } - + /** * deliverytab function. * @@ -186,9 +185,9 @@ if (! class_exists ( 'PostmanMyMailConnector' )) { * @return void */ public function deliverytab() { - apply_filters ( 'print_postman_status', null ); + apply_filters( 'print_postman_status', null ); } - + /** * activate function. * @@ -196,12 +195,12 @@ if (! class_exists ( 'PostmanMyMailConnector' )) { * @return void */ public function activate() { - if (defined ( 'MYMAIL_VERSION' ) && version_compare ( MYMAIL_POSTMAN_REQUIRED_VERSION, MYMAIL_VERSION, '<=' )) { - mymail_notice ( sprintf ( __ ( 'MyMail: Change the delivery method in the %s!', Postman::TEXT_DOMAIN ), sprintf ( '<a href="options-general.php?page=newsletter-settings&mymail_remove_notice=mymail_delivery_method#delivery">%s</a>', __ ( 'Settings', 'postman-smtp' ) ) ), '', false, 'delivery_method' ); - $this->reset (); + if ( defined( 'MYMAIL_VERSION' ) && version_compare( MYMAIL_POSTMAN_REQUIRED_VERSION, MYMAIL_VERSION, '<=' ) ) { + mymail_notice( sprintf( __( 'MyMail: Change the delivery method in the %s!', Postman::TEXT_DOMAIN ), sprintf( '<a href="options-general.php?page=newsletter-settings&mymail_remove_notice=mymail_delivery_method#delivery">%s</a>', __( 'Settings', 'postman-smtp' ) ) ), '', false, 'delivery_method' ); + $this->reset(); } } - + /** * deactivate function. * @@ -209,12 +208,11 @@ if (! class_exists ( 'PostmanMyMailConnector' )) { * @return void */ public function deactivate() { - d; - if (defined ( 'MYMAIL_VERSION' ) && function_exists ( 'mymail_option' ) && version_compare ( MYMAIL_POSTMAN_REQUIRED_VERSION, MYMAIL_VERSION, '<=' )) { - if (mymail_option ( 'deliverymethod' ) == MYMAIL_POSTMAN_ID) { - mymail_update_option ( 'deliverymethod', 'simple' ); + if ( defined( 'MYMAIL_VERSION' ) && function_exists( 'mymail_option' ) && version_compare( MYMAIL_POSTMAN_REQUIRED_VERSION, MYMAIL_VERSION, '<=' ) ) { + if ( mymail_option( 'deliverymethod' ) == MYMAIL_POSTMAN_ID ) { + mymail_update_option( 'deliverymethod', 'simple' ); /* Translators where %s is the name of the page */ - mymail_notice ( sprintf ( __ ( 'MyMail: Change the delivery method in the %s!', Postman::TEXT_DOMAIN ), sprintf ( '<a href="options-general.php?page=newsletter-settings&mymail_remove_notice=mymail_delivery_method#delivery">%s</a>', __ ( 'Settings', 'postman-smtp' ) ) ), '', false, 'delivery_method' ); + mymail_notice( sprintf( __( 'MyMail: Change the delivery method in the %s!', Postman::TEXT_DOMAIN ), sprintf( '<a href="options-general.php?page=newsletter-settings&mymail_remove_notice=mymail_delivery_method#delivery">%s</a>', __( 'Settings', 'postman-smtp' ) ) ), '', false, 'delivery_method' ); } } } |