How do I automatically set all emails to route to a specific email (or set of emails) when they are coming from a development/Test environment?
How do I automatically set all emails to route to a specific email (or set of emails) when they are coming from a development/Test environment?
Hi Scott MacLeod,
I use this direct database query in test instances when I need to:
UPDATE `email_addresses` SET `email_address`='foo@bar.com',`email_address_caps`='FOO@BAR.COM' WHERE `deleted`='0';
I hope this helps!
Hi Scott MacLeod,
I use this direct database query in test instances when I need to:
UPDATE `email_addresses` SET `email_address`='foo@bar.com',`email_address_caps`='FOO@BAR.COM' WHERE `deleted`='0';
I hope this helps!