我已经编辑了函数send()来附加woo commerce插件中的文件,我使用附件文件路径静态工作但是什么时候,我把它放在动态附件源上但是不能发送附件但是,我得到了mail.I我正在使用select查询从数据库中获取图像以附加到邮件中。
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' ) );
}