How to Hide the "SMTP Mailer" Admin Menu

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

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

Where do I put this code?