Jump to content

Featured Replies

Posted

Hi folks,

I am currently preparing a migration to invision community. I want to use the REST API and tried to HTTP POST few accounts.
This is working fine, but the users will get an email: "An administrator has created a new account for you at <your instance>.". How can I disable this? I do not want this message while migration, especially not while API interactions. Is there a flag to disable notifications on REST actions? 
Or is there a way to disable specific notifications like this user creation notification in general? I saw that I can disable SMTP with 

\define( 'EMAIL_DEBUG_PATH', '/dev/null' );

but that's maybe a too general restriction.

Best,
Robin

Solved by Daniel F

Go to solution
  • Author
 

You *could* wrap the constant in a condition checking the path.

Something like


 if( $_SERVER['REQUEST_URI'] == '/api/' )
 {
	 \define( 'EMAIL_DEBUG_PATH', '/dev/null' );
 }

 

Thank you.

if(str_contains($_SERVER['REQUEST_URI'],'/api/'))
{
}

This works nice for me.

Recently Browsing 0

  • No registered users viewing this page.