반응형
bcc와 cc로 wp_mail로 이메일 보내기
아래 필드를 wp_mail로 보내고 싶습니다.
만약 내가 모든 이메일을 다 넣으면Email to
,Copy to
그리고.Bcc to
일렬로$emails
wp_mail로 전달합니다.wp_mail의 cc와 bcc의 헤더를 설정하려면 어떻게 해야 하나요?
$headers = 'From: Test <info@test.co.uk>' . '\r\n';
$headers.= 'Content-type: text/html\r\n';
$success = wp_mail( $emails, $subject, $message, $headers );
어레이를 사용하여 필요한 모든 정보를 전송할 수 있습니다.이러한 방법은 다음과 같습니다.
$headers[] = 'From: Test <info@test.co.uk>';
$headers[] = 'Cc: copy_to_1@email.com';
$headers[] = 'Cc: copy_to_2@email.com';
...
$headers[] = 'Bcc: bcc_to_1@email.com';
$headers[] = 'Bcc: bcc_to_2@email.com';
$success = wp_mail( $emails, $subject, $message, $headers );
프로그래밍 방식으로 얻을 수 있습니다.$copy_to
그리고.$bcc_to
내부 필드 텍스트에 기술된 콤마로 분할하고 정의된 배열을 가진 후 해당 양식 필드의 배열$headers
:
$headers[] = 'From: Test <info@test.co.uk>';
foreach($copy_to as $email){
$headers[] = 'Cc: '.$email;
}
foreach($bcc_to as $email){
$headers[] = 'Bcc: '.$email;
}
$success = wp_mail( $emails, $subject, $message, $headers );
언급URL : https://stackoverflow.com/questions/30098670/sending-emails-with-bcc-and-cc-with-wp-mail
반응형
'programing' 카테고리의 다른 글
MS SQL에 wordpress를 설치하는 방법 (0) | 2023.03.31 |
---|---|
component Did Mount는 정확히 언제 실행됩니까? (0) | 2023.03.31 |
React 18 TypeScript 자녀 FC (0) | 2023.03.31 |
배포 시 Amazon Beanstalk 오류 (0) | 2023.03.31 |
유니코드 문자를 표시/복호화하는 Javascript 대응 (0) | 2023.03.31 |