Registration email: default from name

I want email receivers to see sender name instead of just sender email.
Emails are being sent through sendgrid.

Currently emails are sent without ‘from’ name with following config:

DEFAULT_FROM_EMAIL: administrator@.com

I have tried these configs:

DEFAULT_FROM_EMAIL: (‘administrator@.com’, ‘From name’)
DEFAULT_FROM_EMAIL: administrator@.com ‘From name’
DEFAULT_FROM_EMAIL: administrator@.com From name
DEFAULT_FROM_EMAIL: From name administrator@.com
DEFAULT_FROM_EMAIL: ‘From name’ administrator@.com

Hi @ulan, welcome to the forum!

Did you try the standard RFC 2822 spec?

DEFAULT_FROM_EMAIL: "Full Name <email@address.com>"

From a quick look at the code, it looks like no modification to the configured from address is done for verification/activation emails, so this should work. Let us know!

2 Likes

That worked! Thanks a lot

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.