Changeset 1772320
- Timestamp:
- 11/21/2017 01:24:57 PM (8 years ago)
- Location:
- wp-easy-smtp/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wp-easy-smtp.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-easy-smtp/trunk/readme.txt
r1772297 r1772320 102 102 == Changelog == 103 103 104 = 1.1.1 = 105 * Fixed some bugs 106 104 107 = 1.1.0 = 105 108 * Supported WordPress version up to 4.9. -
wp-easy-smtp/trunk/wp-easy-smtp.php
r1772297 r1772320 2 2 /* 3 3 Plugin Name: WordPress Easy SMTP 4 Version: 1.1. 04 Version: 1.1.1 5 5 Plugin URI: https://iprodev.com/wordpress-easy-smtp-send-emails-from-your-wordpress-site-using-a-smtp-server 6 6 Author: iProDev … … 20 20 if (!class_exists('WP_Easy_SMTP')): 21 21 class WP_Easy_SMTP { 22 public $VERSION = '1.1. 0';22 public $VERSION = '1.1.1'; 23 23 public $MAIN; 24 24 public $PATH; … … 724 724 725 725 $from_email = trim( $options['from_email_field'] ); 726 $from_email = !empty( $from_email ) ? $from_email : get_option( 'admin_email' ); 726 727 $from_name = trim( $options['from_name_field'] ); 727 728 if ( !empty( $from_email ) ) 729 $phpmailer->From = $from_email; 730 if ( !empty( $from_email ) ) 731 $phpmailer->FromName = $from_name; 728 $from_name = !empty( $from_name ) ? $from_name : wp_specialchars_decode( get_option( 'blogname' ) ); 729 $phpmailer->From = $from_email; 730 $phpmailer->FromName = $from_name; 732 731 733 732 //set Reply-To option if needed
Note: See TracChangeset
for help on using the changeset viewer.