3

私は現在、機能的にチェックボックスを使用してデータベースから複数の受信者に電子メールを送信するphpmysqlベースシステムに取り組んでいます。

すべての機能をチェックして、これらの受信者にメールを送信するにはどうすればよいですか?

これが私のphpMailerコードで、正常に動作しています

<?php
require("class.phpmailer.php");
include("class.smtp.php");
$mailer = new PHPMailer();
$mailer->IsSMTP();
$mailer->Host = 'ssl://smtp.gmail.com:465';
$mailer->SMTPAuth = TRUE;
$mailer->Username = 'myemail@gmail.com';
$mailer->Password = 'mypassword';
$mailer->From = 'myemail@gmail.com';
$mailer->FromName = 'Admin';
$mailer->Body = 'TEST EMAIL';
$mailer->Subject = 'This is the subject of the email';
$mailer->AddAddress('myrecipient@yahoo.com');
if(!$mailer->Send())
{
echo "Message was not sent<br/ >";
echo "Mailer Error: " . $mailer->ErrorInfo;
}
else
{
 echo "Message has been sent";
}
?>

チェックボックス機能を使用してデータベースからユーザーを削除するために現在システムで使用している別のサンプルコード:

<?php
/*Check Box Commands*/
$id=$row_notification['user_id'];

if(isset($_POST['Delete'])) {
$checkbox = $_POST['checkbox'];
mysql_select_db($database_connection_ched, $connection_ched);
$id=$row_notification['user_id'];

for($i=0;$i<count($checkbox);$i++)
        {
            $delete = "DELETE FROM tb_user WHERE user_id=$checkbox[$i]";
            mysql_query($delete,$connection_ched);
        }
$result2 = mysql_query($delete);

    if($result2)
    {
    echo "<script language='javascript'>alert ('Successfully Deleted');</script>";
    echo "<meta http-equiv=\"refresh\" content=\"0;URL=notification.php?\">";   }
}
/*End of Checkbox Commands*/
?>
4

1 に答える 1

3

そこにある削除コードからロジックの一部を使用できますが、dbを1回呼び出して情報を取得するだけで、ロジックを改善することもできます。

<?php
require("class.phpmailer.php");
include("class.smtp.php");
$mailer = new PHPMailer();
$mailer->IsSMTP();
$mailer->Host = 'ssl://smtp.gmail.com:465';
$mailer->SMTPAuth = TRUE;
$mailer->Username = 'myemail@gmail.com';
$mailer->Password = 'mypassword';
$mailer->From = 'myemail@gmail.com';
$mailer->FromName = 'Admin';
$mailer->Body = 'TEST EMAIL';
$mailer->Subject = 'This is the subject of the email';

// get checkbox ids posted to us
$checkbox_ids = $_POST["checkbox"];

// get email addresses from db based on checkboxes posted to us
$query = "select email from tb_user where user_id in(".join(",",$checkbox_ids).")";

// connect to db and run query
mysql_select_db($database_connection_ched, $connection_ched);
$result = mysql_query($query);
while( $data = mysql_fetch_assoc($result) )
{
    // make SURE we are not sending this to each and every recipient incrementally.
    // alternately, you can use $mailer->ClearAllRecipients(); <-- this will clear cc and bcc as well
    $mailer->ClearAddresses();
    // send it to THIS user...
    $mailer->AddAddress($data["email"]);


    print ($mailer->Send()) ? "Message sent to: " : "Message <b>not</b> sent to: ";
    print $data["email"]."<br />\n";
}

?>
于 2012-09-24T02:34:10.063 に答える