fms*_*fms 5 php wordpress email-attachments
现在我可以发送没有附件的电子邮件:
wp_mail( $to, $subject, $message, $headers);
但是,如何发送带附件的电子邮件?
 <?php wp_mail( $to, $subject, $message, $headers, $attachments ); ?> 
http://codex.wordpress.org/Function_Reference/wp_mail
小智 6
请参考下文
$attachments = array(WP_CONTENT_DIR . '/uploads/file_to_attach.zip');
$headers = 'From: My Name <myname@mydomain.com>' . "\r\n";
wp_mail('test@test.com', 'subject', 'message', $headers, $attachments);
| 归档时间: | 
 | 
| 查看次数: | 22972 次 | 
| 最近记录: |