2012-10-30 16 views
5

wp_mail wordpress işlevini kullanarak bir ek e-postanın nasıl gönderileceğini bana söyleyen var mı? Aşağıdaki kodu kullanıyorum ama onunwp_mail postası kullanarak nasıl ek posta gönderilir

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

Teşekkür

cevap

5

bu deneyin ve bana o zaman haber ver çalışmıyor -

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

Ekinizde bu durumda başlık olarak ayarlıyor.

+0

Thnx a lot man @swapnesh şimdi çalışıyor, gerçekten mutlu hissediyorum :) –

+0

@ user1732209 ok :) – swapnesh

İlgili konular