-1
文字列に複数のメールに一つのメッセージを送ってください$電子メールの例:私のsoluctionであなたの影響のためどのように私はのような文字列を持っている
$to = '[email protected]';
$msg = 'SEND these to each email above thanks';
$to = '[email protected]';
$msg = 'SEND these to each email above thanks';
$to = '[email protected]';
$msg = 'SEND these to each email above thanks';
foreach($email as $email)
{
$to = $email["to"];
$subject = 'the subject';
$message = '$msg';
$headers = 'is this really? ';
mail($to, $subject, $message, $headers);
}
大きな感謝を
開始 '$ email'は配列ではありません。' explode() 'を使って1にしてください。 – nogad
@nogad 私は本当にあなたのアイデアを得ることはありません任意のコード例がありますか? – user9107323