2012-10-30 27 views
5

wp_mail wordpressの機能を使用して添付ファイルの電子メールを送信する方法を教えてもらえますか? 私は、次のコードを使用していますが、そのはwp_mailメールを使用して添付メールを送信する方法

$attachments = array(ABSPATH . '/uploads/abc.png'); 
wp_mail($email, 'Testing Attachment' , 'This is subscription',$attachments); 

おかげ

答えて

5

はこれを試してみて、私はそれから知っているように動作していない -

$attachments = array(ABSPATH . '/uploads/abc.png'); 
wp_mail($email, 'Testing Attachment' , 'This is subscription','This is for header',$attachments); 

をあなたの添付ファイルが、この場合にヘッダーとして設定されます。

+0

Thnxたくさんの男@swapneshは今働いている、mは本当に幸せを感じる:) –

+0

@ user1732209 ok :) – swapnesh

関連する問題