programing

bcc와 cc로 wp_mail로 이메일 보내기

testmans 2023. 3. 31. 21:55
반응형

bcc와 cc로 wp_mail로 이메일 보내기

아래 필드를 wp_mail로 보내고 싶습니다.

여기에 이미지 설명 입력

만약 내가 모든 이메일을 다 넣으면Email to,Copy to그리고.Bcc to일렬로$emailswp_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

반응형