I want to send mail from different address. I changed in this code but address(address: ‘[email protected]’) in blow code doesn’t applied. it just show address by use MAIL_USERNAME in env file
public function envelope(): Envelope
{
return new Envelope(
from: new Address(address: '[email protected]', name: 'Jeffrey Way'),
);
}