How to Hide the "Gmail SMTP" Admin Menu

function plt_hide_wp_gmail_smtp_menus() {
	//Hide the "Gmail SMTP" menu.
	remove_menu_page('gmailsmtp');
}

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

Where do I put this code?