', 'dokuwiki1@spam.la, dokuwiki2@spam.la', 'Test User 1 , Test User 2 ' ); $run = 0; foreach($addr as $ad){ $run++; $data = array( 'to' => $ad, 'subject' => 'mailtest 1-'.$run, 'body' => "Mailtest run 1-$run using to: $ad from:", ); $this->assertTrue((bool) _mail_send_action($data)); $data = array( 'to' => $ad, 'from' => 'dokuwiki1@spam.la', 'subject' => 'mailtest 2-'.$run, 'body' => "Mailtest run 2-$run using to: $ad from: dokuwiki1@spam.la", ); $this->assertTrue((bool) _mail_send_action($data)); $data = array( 'to' => $ad, 'from' => '"Foo Bar" ', 'subject' => 'mailtest 3-'.$run, 'body' => "Mailtest run 3-$run using to: $ad from: \"Foo Bar\" ", ); $this->assertTrue((bool) _mail_send_action($data)); } } } //Setup VIM: ex: et ts=4 :