Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

email redirect

asp
Regular Contributor
Regular Contributor

Hello,

How can I stop emails from going out to real end users, in a dev environment? Is there a configuration or setting that will force all emails (in non-prod environment) to go to a single mailbox or flatfile?

Thanks

1 REPLY 1

rushikeshvartak
All-Star
All-Star

Remove email address from users table

update users set email=null;

Remove to cc from ecmemailtemplates table

select mailto,mailcc,mailbcc from ecmemailtemplate

update ecmemailtemplate set mailto=null,mailcc=null,mailbcc=null


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.