diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2018-04-04 19:17:51 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2018-04-04 19:17:51 +0000 |
commit | 62b95f35576ea9b9178b900f9480fed0466211a2 (patch) | |
tree | 746cfdf1c0cdc8408b312870f881ed3684d8d60b /Postman/Postman-Mail/PostmanWooCommerce.php | |
parent | a83767b57bb15075e775f2336cfd77225b155799 (diff) | |
download | Post-SMTP-62b95f35576ea9b9178b900f9480fed0466211a2.zip |
notification & new gmail client
Diffstat (limited to 'Postman/Postman-Mail/PostmanWooCommerce.php')
-rw-r--r-- | Postman/Postman-Mail/PostmanWooCommerce.php | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/Postman/Postman-Mail/PostmanWooCommerce.php b/Postman/Postman-Mail/PostmanWooCommerce.php new file mode 100644 index 0000000..a6a2e82 --- /dev/null +++ b/Postman/Postman-Mail/PostmanWooCommerce.php @@ -0,0 +1,149 @@ +<?php + +if ( ! class_exists( 'PostmanWoocommerce' ) ) { + class PostmanWoocommerce { + + private $options; + + public function __construct() { + $this->set_vars(); + $this->hooks(); + } + + public function set_vars() { + $this->options = PostmanOptions::getInstance (); + } + + public function hooks() { + add_filter( 'option_woocommerce_email_from_address', array( $this, 'set_postman_from_address' ), 10, 2 ); + add_filter( 'woocommerce_email_from_address', array( $this, 'set_postman_from_address' ), 10, 2 ); + add_filter( 'woocommerce_get_settings_email', array( $this, 'overide_email_settings' ) ); + } + + public function set_postman_from_address( $from_address, $WC_Email ) { + return $this->options->getMessageSenderEmail(); + } + + public function overide_email_settings( $settings ) { + + return array( + + array( 'title' => __( 'Email notifications', Postman::TEXT_DOMAIN ), 'desc' => __( 'Email notifications sent from WooCommerce are listed below. Click on an email to configure it.', Postman::TEXT_DOMAIN ), 'type' => 'title', 'id' => 'email_notification_settings' ), + + array( 'type' => 'email_notification' ), + + array( 'type' => 'sectionend', 'id' => 'email_notification_settings' ), + + array( 'type' => 'sectionend', 'id' => 'email_recipient_options' ), + + array( 'title' => __( 'Email sender options', Postman::TEXT_DOMAIN ), 'type' => 'title', 'desc' => '', 'id' => 'email_options' ), + + array( + 'title' => __( '"From" name', Postman::TEXT_DOMAIN ), + 'desc' => __( 'How the sender name appears in outgoing WooCommerce emails.', Postman::TEXT_DOMAIN ), + 'id' => 'woocommerce_email_from_name', + 'type' => 'text', + 'css' => 'min-width:300px;', + 'default' => esc_attr( get_bloginfo( 'name', 'display' ) ), + 'autoload' => false, + 'desc_tip' => true, + ), + + array( + 'title' => __( '"From" address', Postman::TEXT_DOMAIN ), + 'desc' => __( 'This is overided by the account configured on Post SMTP plugin configuration.', Postman::TEXT_DOMAIN ), + 'id' => 'woocommerce_email_from_address', + 'type' => 'email', + 'custom_attributes' => array( + 'multiple' => 'multiple', + 'disabled' => 'true', + ), + 'css' => 'min-width:300px;', + 'default' => $this->options->getMessageSenderEmail(), + 'autoload' => false, + 'desc_tip' => true, + ), + + array( 'type' => 'sectionend', 'id' => 'email_options' ), + + array( 'title' => __( 'Email template', Postman::TEXT_DOMAIN ), 'type' => 'title', 'desc' => sprintf( __( 'This section lets you customize the WooCommerce emails. <a href="%s" target="_blank">Click here to preview your email template</a>.', Postman::TEXT_DOMAIN ), wp_nonce_url( admin_url( '?preview_woocommerce_mail=true' ), 'preview-mail' ) ), 'id' => 'email_template_options' ), + + array( + 'title' => __( 'Header image', Postman::TEXT_DOMAIN ), + 'desc' => __( 'URL to an image you want to show in the email header. Upload images using the media uploader (Admin > Media).', Postman::TEXT_DOMAIN ), + 'id' => 'woocommerce_email_header_image', + 'type' => 'text', + 'css' => 'min-width:300px;', + 'placeholder' => __( 'N/A', Postman::TEXT_DOMAIN ), + 'default' => '', + 'autoload' => false, + 'desc_tip' => true, + ), + + array( + 'title' => __( 'Footer text', Postman::TEXT_DOMAIN ), + 'desc' => __( 'The text to appear in the footer of WooCommerce emails.', Postman::TEXT_DOMAIN ), + 'id' => 'woocommerce_email_footer_text', + 'css' => 'width:300px; height: 75px;', + 'placeholder' => __( 'N/A', Postman::TEXT_DOMAIN ), + 'type' => 'textarea', + /* translators: %s: site name */ + 'default' => get_bloginfo( 'name', 'display' ), + 'autoload' => false, + 'desc_tip' => true, + ), + + array( + 'title' => __( 'Base color', Postman::TEXT_DOMAIN ), + /* translators: %s: default color */ + 'desc' => sprintf( __( 'The base color for WooCommerce email templates. Default %s.', Postman::TEXT_DOMAIN ), '<code>#96588a</code>' ), + 'id' => 'woocommerce_email_base_color', + 'type' => 'color', + 'css' => 'width:6em;', + 'default' => '#96588a', + 'autoload' => false, + 'desc_tip' => true, + ), + + array( + 'title' => __( 'Background color', Postman::TEXT_DOMAIN ), + /* translators: %s: default color */ + 'desc' => sprintf( __( 'The background color for WooCommerce email templates. Default %s.', Postman::TEXT_DOMAIN ), '<code>#f7f7f7</code>' ), + 'id' => 'woocommerce_email_background_color', + 'type' => 'color', + 'css' => 'width:6em;', + 'default' => '#f7f7f7', + 'autoload' => false, + 'desc_tip' => true, + ), + + array( + 'title' => __( 'Body background color', Postman::TEXT_DOMAIN ), + /* translators: %s: default color */ + 'desc' => sprintf( __( 'The main body background color. Default %s.', Postman::TEXT_DOMAIN ), '<code>#ffffff</code>' ), + 'id' => 'woocommerce_email_body_background_color', + 'type' => 'color', + 'css' => 'width:6em;', + 'default' => '#ffffff', + 'autoload' => false, + 'desc_tip' => true, + ), + + array( + 'title' => __( 'Body text color', Postman::TEXT_DOMAIN ), + /* translators: %s: default color */ + 'desc' => sprintf( __( 'The main body text color. Default %s.', Postman::TEXT_DOMAIN ), '<code>#3c3c3c</code>' ), + 'id' => 'woocommerce_email_text_color', + 'type' => 'color', + 'css' => 'width:6em;', + 'default' => '#3c3c3c', + 'autoload' => false, + 'desc_tip' => true, + ), + + array( 'type' => 'sectionend', 'id' => 'email_template_options' ), + + ); + } + } +}
\ No newline at end of file |