How to Hide the "Gmail SMTP" Admin Menu

function plt_hide_gmail_smtp_menus() {
	//Hide the "Settings → Gmail SMTP" menu.
	remove_submenu_page('options-general.php', 'gmail-smtp-settings');
}

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

Where do I put this code?