Replies: 1 comment 1 reply
-
Show the screenshot of all your template. Most likely, you also changed the From Email field. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem:

I'm using EmailJS for newsletter subscription. Emails are being sent successfully but the sender name shows "me" instead of my custom name "Foody Newsletter".
Screenshots:
Current Setup:
Service: Gmail
Template configured with From Name field
JavaScript sending with from_name parameter
What I've tried:
Set From Name in template to "Foody Newsletter"
Used {{from_name}} variable in template
Passing from_name in emailjs.send() parameters
Checked email service settings
Code snippet:
javascriptawait emailjs.send('SERVICE_ID', 'TEMPLATE_ID', {
subscriber_email: email,
from_name: 'Foody Newsletter'
});
Expected: Sender should show "Foody Newsletter"
Actual: Sender shows "me"
Any ideas what could be causing this? Is this a Gmail service configuration issue or EmailJS template setting?
Thanks! 🙏
Beta Was this translation helpful? Give feedback.
All reactions