2016-04-29 9 views
2

私はすべてのユーザーに電子メールを送信する必要があります。これは、アレイPHPのメール配列を文字列に

array(5) { 
    [0]=> array(2) { ["email"]=> string(20) "[email protected]" ["name"]=> string(8) "حمزة" } 
    [1]=> array(2) { ["email"]=> string(13) "[email protected]" ["name"]=> string(4) "tooo" } 
    [2]=> array(2) { ["email"]=> string(14) "[email protected]" ["name"]=> string(8) "احمد" } 
    [3]=> array(2) { ["email"]=> string(21) "[email protected]" ["name"]=> string(14) "اشهارات" } 
    [4]=> array(2) { ["email"]=> string(20) "[email protected]" ["name"]=> string(9) 

であり、私はただ、foreachループを使用した電子メール

$hs = "From: \"Ishharat\"<[email protected]>\n"; 
$hs .= "Reply-To: [email protected]\n"; 
$hs .= "Content-Type: text/html; charset=\"utf-8\""; 

if(mail($to,$subject,$body,$hs)) 
    return TRUE; 
else { 
    return FALSE; 
} 
+0

[「電子メール」] $ユーザーの電子メールのメソッドを作成し、アレイ – Ehsan

答えて

1

を送信するには、このコードを持っています。

foreach ($users as $user) { 
    $user->email; // the email to use in the mail() function 
    $user->name; // The name to use in the headers of the mail() function 
} 
+1

にループ内でそれを使用するあなたの先生に感謝し、それが働いていますが、私は使用しています –