반응형
워드프레스에 첨부파일을 첨부하여 이메일을 보내는 방법은?
이제 첨부파일 없이 이메일을 보낼 수 있습니다.
wp_mail( $to, $subject, $message, $headers);
그런데 어떻게 첨부해서 메일을 보내나요?
<?php wp_mail( $to, $subject, $message, $headers, $attachments ); ?>
http://codex.wordpress.org/Function_Reference/wp_mail
예를 들어 아래를 참조합니다.
$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);
add_filter( 'wpcf7_mail_components', 'mycustom_wpcf7_mail_components' );
function mycustom_wpcf7_mail_components( $components ) {
$components['attachments'][] = 'full path of your PDF file';
return $components;
}
언급URL : https://stackoverflow.com/questions/4554664/how-to-send-an-email-with-attachment-in-wordpress
반응형
'programing' 카테고리의 다른 글
MySQL 5.7.27을 시작할 수 없음 (0) | 2023.09.13 |
---|---|
FK가 있는 모든 테이블을 다른 테이블로 이동하는 방법은 무엇입니까? (0) | 2023.09.13 |
python에서 numpy.linalg를 사용한 후 고유값 및 관련 고유 벡터 정렬 (0) | 2023.09.13 |
How to make an element in XML schema optional? (0) | 2023.09.13 |
액션바의 크기는 픽셀 단위로 어떻게 됩니까? (0) | 2023.09.13 |