Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to send an email with attachment in wordpress?

Now I can send an email without attachment :

wp_mail( $to, $subject, $message, $headers);

But how can I send an email with attachment?

like image 677
fms Avatar asked Dec 29 '10 13:12

fms


2 Answers

 <?php wp_mail( $to, $subject, $message, $headers, $attachments ); ?> 

http://codex.wordpress.org/Function_Reference/wp_mail

like image 119
zod Avatar answered Sep 21 '22 02:09

zod


Refer below e.g.

$attachments = array(WP_CONTENT_DIR . '/uploads/file_to_attach.zip');
$headers = 'From: My Name <[email protected]>' . "\r\n";
wp_mail('[email protected]', 'subject', 'message', $headers, $attachments);
like image 43
sandip patil Avatar answered Sep 21 '22 02:09

sandip patil