InnoGE / laravel-msgraph-mail

Laravel Mail driver for Microsoft Office 365 using the MSGraph API
MIT License
26 stars 7 forks source link

Allow overwriting of email sender #14

Closed geisi closed 10 months ago

geisi commented 10 months ago

This PR allows overwriting the configured mail sender address within the envelope.

    //configured from address: taylor@laravel.com
    $mailable = new TestMail(false);
    $mailable->from('other-mail@laravel.com', 'Other Mail');

It solves #13