You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
while trying to figure out why the replyToEmail argument isn't picked up, I've discovered a bug in your Mailer class at line 161: if (!empty($mail['replyToEmail']) && !empty(static::$config['defaults']['replyToEmail'] ?? '')) {
the thing is if I'm setting up a replyToEmail value, that won't be picked up because of the second condition which isn't met ever!
Hi,
while trying to figure out why the replyToEmail argument isn't picked up, I've discovered a bug in your Mailer class at line 161:
if (!empty($mail['replyToEmail']) && !empty(static::$config['defaults']['replyToEmail'] ?? '')) {the thing is if I'm setting up a replyToEmail value, that won't be picked up because of the second condition which isn't met ever!