programing

wp_mail을 사용하여 첨부 메일을 보내는 방법

copyandpastes 2023. 3. 27. 22:23
반응형

wp_mail을 사용하여 첨부 메일을 보내는 방법

다음 방법으로 첨부 메일을 보내는 방법을 알려 줄 사람이 있나요?wp_mail워드프레스의 기능?다음 코드를 사용하고 있지만 작동하지 않습니다.

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

감사해요.

이것을 사용해 보고, 그 때 알려 주세요.

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

이 경우 첨부파일은 헤더로 설정됩니다.

언급URL : https://stackoverflow.com/questions/13135200/how-to-send-an-attachment-mail-using-wp-mail-mail

반응형