How to Hide the "Plainmail" Admin Menu

function plt_hide_plainmail_menus() {
	//Hide the "Settings → Plainmail" menu.
	remove_submenu_page('options-general.php', 'plainmail');
}

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

Where do I put this code?