If you need to change the email sender name or address in PrestaShop, follow these steps to update your store's outgoing email settings.
Change Email Sender in PrestaShop Back Office
- Log in to your PrestaShop admin panel.
- Go to Advanced Parameters > Email.
- In the Email section, locate:
- Email Sender Name (e.g., Your Store Name)
- Email Sender Address (e.g., info@yourdomain.com)
- Change the values to your preferred name and email.
- Click Save.
Change Email Sender in Email Templates
If PrestaShop emails still show the old sender name, update the email templates:
- Navigate to: Design > Email Theme.
- Select Your Theme.
- Edit the email templates (e.g., Order Confirmation, Contact Form).
- Look for placeholders like
{shop_name}or{shop_email}and replace them. - Save changes and test.
Change Email Sender in PrestaShop Database
If changes in the admin panel don’t apply, update the database:
- Access your database via phpMyAdmin or MySQL.
- Run this SQL query:
UPDATE ps_configuration SET value = 'Your New Sender Name' WHERE name = 'PS_SHOP_EMAIL_NAME'; UPDATE ps_configuration SET value = 'newemail@yourdomain.com' WHERE name = 'PS_SHOP_EMAIL';Note: The table prefixps_is default. Replace it with your actual PrestaShop database prefix if different. - Save and clear PrestaShop cache:
- Go to Advanced Parameters > Performance.
- Click Clear Cache.
Ensure Emails Are Sent from the New Address
If emails are still sent from the old address:
- Check your mail server settings (SMTP settings under Advanced Parameters > Email).
- Verify SPF, DKIM, and DMARC records in your DNS.
- Clear PrestaShop cache and test email sending.
Test the New Email Sender
- Go to Advanced Parameters > Email.
- Scroll to the Test your email configuration section.
- Send a test email to verify changes.
Conclusion
Changing the email sender name and address in PrestaShop is easy via the admin panel, database, or email templates. If issues persist, check SMTP settings and clear cache.


