If you are using a WooCommerce store on your WordPress website you may want to add the payment type or method to your admin email for new orders on there. If you want to do that without a plugin you can then add this code to your functions.php file. You may want to backup your WordPress website before you make updates to it.
Payment type in WooCommerce admin new order email
/** * Update WooCommerce payment type to email * * @author WPSnacks.com * @link https://www.wpsnacks.com */ function payment_type_in_admin_email( $order, $is_admin_email ) { if ( $is_admin_email ) { echo '<p><strong>Your Payment Method:</strong> ' . $order->payment_method_title . '</p>'; } } add_action( 'woocommerce_email_after_order_table', 'payment_type_in_admin_email', 15, 2 );
Now if that works for you it would add the payment type to WooCommerce admin email on there.