How to Hide the "SMTP2GO" Admin Menu

function plt_hide_smtp2go_menus() {
	//Hide the "SMTP2GO" menu.
	remove_menu_page('smtp2go-wordpress-plugin');
}

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

Where do I put this code?