无法使用phpmailer向多个收件人发送电子邮件

时间:2016-02-04 20:12:40

标签: php mysql phpmailer

我正在尝试使用phpmailer向多个收件人发送电子邮件并从数据库中的表中获取电子邮件列表,但是,每当我只向一个收件人发出请求时,列表中的第一个收到电子邮件。 *我知道这可能被标记为重复,但我找不到使用mysql的类似示例

int[] arr = new int[100];

for (int i = 0; i < 100; i++) {
        arr[i] = (ran.nextInt(90)) + 10;
}

// ba starts with all false values 
boolean ba[] == new boolean[90];  // note that the instructor said 10-100
for(int i=0; i<90; i++) {
  ba[arr[i]] = true;
  // lets assume arr[0] == 45
  // ba[arr[0]] is the same as ba[45]
  // ba[45] = true;  will set that bucket of the boolean array to true 
}

System.out.println("These numbers are not in randomArray: ");
for (int k = 0; k < 10; k++) {
    System.out.println(k);
}
for (int j = 0; j < 90; j++) {
    if (!ba[j]) { // shorthand for ba[j]==false
        System.out.println(j+10); // The array starts at a base of 10
    }
}

0 个答案:

没有答案