Description
When set, these optional constants will override settings for the Google Integration in Gravity SMTP. Default values are shown.
Placement
Constants should be set in wp-config.php
.
Since
This constant was added in Gravity SMTP version 1.1.0
Constants
GRAVITYSMTP_GOOGLE_ACTIVE
Sets whether or not the Google integration is active.
define( 'GRAVITYSMTP_GOOGLE_ACTIVE' , false ); |
GRAVITYSMTP_GOOGLE_ENABLED
Sets whether or not the Google integration is enabled.
define( 'GRAVITYSMTP_GOOGLE_ENABLED' , false ); |
GRAVITYSMTP_GOOGLE_CLIENT_ID
Set the client ID provided by Google Cloud Console for oAuth authentication.
define( 'GRAVITYSMTP_GOOGLE_CLIENT_ID' , '' ); |
GRAVITYSMTP_GOOGLE_CLIENT_SECRET
Set the client ID provided by Google Cloud Console for oAuth authentication.
define( 'GRAVITYSMTP_GOOGLE_CLIENT_SECRET' , '' ); |
GRAVITYSMTP_GOOGLE_CONFIGURED
Sets whether or not the Google integration is configured.
define( 'GRAVITYSMTP_GOOGLE_CONFIGURED' , false ); |
GRAVITYSMTP_GOOGLE_FORCE_FROM_EMAIL
Determines whether or not to force the from: email address for all outgoing messages sent via Google.
define( 'GRAVITYSMTP_GOOGLE_FORCE_FROM_EMAIL' , false ); |
GRAVITYSMTP_GOOGLE_FORCE_FROM_NAME
Determines whether or not to force the from: name for all outgoing messages sent via Google.
define( 'GRAVITYSMTP_GOOGLE_FROM_NAME' , false ); |
GRAVITYSMTP_GOOGLE_FROM_EMAIL
Set the from: address associated with outgoing messages sent via Google.
define( 'GRAVITYSMTP_GOOGLE_FROM_EMAIL' , '' ); |
GRAVITYSMTP_GOOGLE_FROM_NAME
Set the from: name associated with outgoing messages sent via Google.
define( 'GRAVITYSMTP_GOOGLE_FROM_NAME' , '' ); |
GRAVITYSMTP_GOOGLE_USE_RETURN_PATH
Determines whether or not to use the return path for all outgoing messages sent via Google integration.
1 | define( 'GRAVITYSMTP_GOOGLE_USE_RETURN_PATH' , false ); // accepts (true, false) |