How to Hide the "SendGrid" Admin Menu

function plt_hide_connect_sendgrid_for_emails_menus() {
	//Hide the "Settings → SendGrid" menu.
	remove_submenu_page('options-general.php', 'sendgrid-settings');
}

add_action('admin_menu', 'plt_hide_connect_sendgrid_for_emails_menus', 11);

Where do I put this code?