Turn off MonsterInsights email summaries if admin user is a certain email address.
if [[ $( wp option get admin_email ) == "[email protected]" ]]; then
echo "Turning off MonsterInsights email summaries"
wp eval 'monsterinsights_update_option( "email_summaries", "off" );'
fi