You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gburton edited this page Oct 1, 2025
·
3 revisions
To set the sending email to the store owner's address on the Contact Us page, run SQL like
INSERT INTO configuration
(configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added)
VALUES ('E-Mail From', 'EMAIL_FROM', 'root@localhost', 'All e-mails will be sent from this address', 12, 6, NOW());
Change the root@localhost as appropriate for your server. E.g. to the same setting as STORE_OWNER_EMAIL_ADDRESS.
Note that this setting was added to the Admin Area for easy updating. Please look here first.
Your Admin > Email Options > Email From
Email From must be a working inbox at your hosting account.