magepal / magento2-gmail-smtp-app

Configure Magento 2 to send email using Google App, Gmail, Amazon Simple Email Service (SES), Microsoft Office365 and many other SMTP (Simple Mail Transfer Protocol) servers
https://www.magepal.com
319 stars 148 forks source link

Added php7.4 support #174

Closed hryvinskyi closed 3 years ago

hryvinskyi commented 3 years ago

Added php7.4 support

srenon commented 3 years ago

@hryvinskyi

If I remember correctly ?? was introduced in PHP 7.0, so either we need to:

  1. Update composer requirement https://github.com/magepal/magento2-gmail-smtp-app/blob/master/composer.json#L19

  2. change $result['email'] ?? '' to isset($result['email']) ? $result['email'] : ''

hryvinskyi commented 3 years ago

@srenon Added backward compatibility with php5.6