我正在使用woo commerce插件进行支付网关。在function.php中,我编写了这个代码,用于在电子邮件中附加一个图像。但我无法实现这一点,任何人都知道如何实现这一点。
include( plugin_dir_path( __FILE__ ) . '/woocommerce/classes/class-wc-emails.php');
function send_invoice ()
{
$attachments = array( WP_CONTENT_DIR . '/includes/Desert.jpg' );
wp_mail( 'sanjaynakate@gmail.com', 'Attachment test', 'The message', 'header', $attachments);
}
add_filter( 'woocommerce_email_attachments', 'send_invoice' );