How to Hide the "EdgeMail" Admin Menu

function plt_hide_edgemail_menus() {
	//Hide the "Tools → EdgeMail" menu.
	remove_submenu_page('tools.php', 'edgemail');
}

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

Where do I put this code?