How to Hide the "eMail by SMTP" Admin Menu

function plt_hide_email_by_smtp_menus() {
	//Hide the "Settings → eMail by SMTP" menu.
	remove_submenu_page('options-general.php', 'email-by-smtp/emailbysmtp.php');
}

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

Where do I put this code?