-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The received email "To:" field does not contain the subscriber name #532
Comments
What is the advantage of including the recipient's name in the to field? |
One could argue it makes it more 'personal' - I know mailchimp does what @lionep is asking for. Mailchimp suggests this is the reason to do it. But I'm not sure it's ever persuaded me more to open a newsletter because it used my first name. |
Do mail clients even show this in the inbox list, unless you open an e-mail and look at the |
They don't show this field anywhere except detail view of mail providers.
Nowhere this would be visible so wondering how this prompts you to open
more email?
If personalization is the question that's in mail body and not in to field.
…On Thu, 21 Oct, 2021, 1:11 pm Kailash Nadh, ***@***.***> wrote:
Do mail clients even show this in the inbox list, unless you open an
e-mail and look at the To field?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#532 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARESAVFVHBVINEPYVSLXUYLUH6725ANCNFSM5GL6AGZA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
In Yahoo webmail, they show it, when you open the message :
|
Your example shows I just checked a bunch of non-personal e-mails in my mailbox and none of them have my name in the |
I did a feasibility check on this and it is a non-trivial change. Since this has no quantifiable benefits, we should drop this for now.
|
@knadh You beat me to it with your second point above. We get our subscriber lists from Mediavine who don't provide names. So when we import the records, we just give a default of '1' for the name. Therefore a toggle would be essential for us. and can I just say while I'm here, what an awesome update 2.0.0 was. Such a cool and useful piece of software :-) |
@knadh you’re right, I’ve analyzed my incoming emails, and only a small percentage of them have a personalized To: field, I thought it was a more standard way to proceed. And of course, really nice project there! |
Cheers everyone. Closing this issue for now. If the SMTP lib changes at some point to make this format feasible, we can add this option. |
It doesn't seemed solved. Is there any progress on this topic maybe? |
Yea so listmonk is using - smtp net package I think you are able to change the "to" field which then, if available, include the name as well like so: See also: https://stackoverflow.com/questions/46369598/how-to-define-senders-name-in-golang-net-smtp-sendmail |
I also saw this was recommended to do to avoid spam filters. Is this doable with custom headers? Eg:
|
Bumping this. Must be possible. When using smtp the to address is "half there" as in |
I agree, this should just be possible. Please reopen issue. |
Is your feature request related to a problem? Please describe.
When a subscriber receive an email, in the mail headers, the
To:
header contains only the subscriber email, and not its name.Describe the solution you'd like
The email can contain the header :
To: "Subscriber name" <[email protected]>
instead ofTo: [email protected]
.The text was updated successfully, but these errors were encountered: