我已经编辑了函数 send() 以在 woo commerce 插件中附加文件,当我静态使用附件文件路径时,它可以工作,但是当我将它放在动态附件源上时,无法发送附件,但是,我收到了邮件。我我正在使用选择查询从数据库中获取图像以附加到邮件中。
function send( $to, $subject, $message, $headers, $attachments ) {
global $wpdb;
$current_post1=$post->ID;
$result1=$wpdb->get_results("SELECT BgImageName FROM ca_woocommerce_order_items where order_id = $current_post1 ");
foreach ( $result1 as $print1 )
echo $imgemail=$print1->BgImageName;
//static path it's work
//$attachments = array( '/home2/rahulr/public_html/cutting-edge/wordpress_theme/user_templates/1384010402.png' );
//dynamic path it's not working
$attachments = array('/home2/rahulr/public_html/cutting-edge/wordpress_theme/user_templates/'.$imgemail);
add_filter( 'wp_mail_from', array( $this, 'get_from_address' ) );
add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) );
add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) );
wp_mail( $to, $subject, $message, $headers, $attachments );
remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ) );
remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) );
remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) );
}