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 147 forks source link

Fix Undefine clearFrom() method #126

Closed Bodyanuk closed 5 years ago

severeCavok commented 5 years ago

The clearFrom() would also be unnecessary, as setFrom(..) already incorporates clearing the FROM header. See below:

    public function setFrom($emailOrAddressList, $name = null)
    {
        $this->clearHeaderByName('from');
        return $this->addFrom($emailOrAddressList, $name);
    }