Changeset 1725289
- Timestamp:
- 09/06/2017 02:54:53 AM (9 years ago)
- Location:
- cimy-swift-smtp/trunk
- Files:
-
- 3 edited
-
README_OFFICIAL.txt (modified) (1 diff)
-
cimy_swift_smtp.php (modified) (1 diff)
-
swift_engine.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cimy-swift-smtp/trunk/README_OFFICIAL.txt
r1725268 r1725289 62 62 63 63 CHANGELOG: 64 v3.0.2 - 06/09/2017 65 - Fixed PHP Parse error regression on older PHP 5.x (try #2, thanks to Andrew Bruce) 66 64 67 v3.0.1 - 06/09/2017 65 68 - Fixed PHP Parse error regression on older PHP 5.x (despite they are now unsupported, thanks to Andrew Bruce) -
cimy-swift-smtp/trunk/cimy_swift_smtp.php
r1725273 r1725289 5 5 Description: Send email via SMTP (Compatible with GMAIL) 6 6 Author: Marco Cimmino 7 Version: 3.0. 17 Version: 3.0.2 8 8 Author URI: mailto:cimmino.marco@gmail.com 9 9 -
cimy-swift-smtp/trunk/swift_engine.php
r1725268 r1725289 171 171 172 172 // Create a message 173 $swift_message = (new Swift_Message($subject))174 ->setFrom(array(apply_filters('wp_mail_from', $from_email) => apply_filters('wp_mail_from_name', $from_name)))173 $swift_message = new Swift_Message($subject); 174 $swift_message->setFrom(array(apply_filters('wp_mail_from', $from_email) => apply_filters('wp_mail_from_name', $from_name))) 175 175 ->setBody($message) 176 176 ;
Note: See TracChangeset
for help on using the changeset viewer.