Lines Matching refs:from
16 'from' => 'from@example.com',
17 'premise' => function ($from, $to, $subject, $message) {
18 ini_set('sendmail_from', $from);
23 'from' => 'ex_from@example.com',
24 'premise' => function ($from, $to, $subject, $message) {
26 $headers = "from: {$from}";
31 'from' => 'ex_from@example.com',
32 'premise' => function ($from, $to, $subject, $message) {
34 $headers = "FRom: {$from}";
39 'from' => 'ex_from@example.com',
40 'premise' => function ($from, $to, $subject, $message) {
42 $headers = "from: {$from}";
49 foreach ($cases as $index => ['from' => $from, 'premise' => $premise]) {
60 $res = $premise($from, $to, $subject, $message);
72 if ($mail->isAsExpected($from, $to, $subject, $message)) {