Jump to content

PHP Mailing


novicepunter

Recommended Posts

Hi - I have a really simple mailing system - but how do I make the addresses go into the bcc field?

Many thanks

Novicepunter

 

select_count = document.getElementsByName("selected[]").length;

for (i = 0; i < select_count; i++) {

selected_i = document.getElementsByName("selected[]");

if( selected_i.checked == true) {

if( selected_i.accept != "" && selected_i.accept != null) {

if(dst_count > 0) {

addresses = addresses + "<?php echo getMailerDelim(); ?>";

}

addresses = addresses + selected_i.accept;

dst_count++;

}

}

}

 

if(dst_count == 0)

alert("No address selected.");

else

location.href = "<?php echo getMailer(); ?>"+addresses; :confused:

Link to comment
https://forums.phpfreaks.com/topic/181367-php-mailing/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.