Kirby PHPMailer default sender name

Is there any way to set the default sender name? The default email class (kirby/src/Email) only set the sender address :frowning:

$mailer->setFrom($this->from());

This should be:

$mailer->setFrom($this->from(), $this->fromName());

Am I right? :slight_smile:

(BTW: Should I move this issue to github?)

You could upvote this: https://github.com/getkirby/ideas/issues/42