How to Hide the "SMTP7" Admin Menu

function plt_hide_wp_mail_smtp_mailer_menus() {
	//Hide the "Settings → SMTP7" menu.
	remove_submenu_page('options-general.php', 'wp-mail-smtp-mailer');
}

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

Where do I put this code?