dongwenhui8900 2016-08-01 15:16 采纳率: 0%
浏览 48
已采纳

php代码:电子邮件不发送

my problem is i have a code to send email to users when click in some button its works for me in localhost but not working when i push it in heroku server

<?php

if (isset($_POST['submitcmt']) && $_POST['token'] == $dcs_user_info['token']) {
    //get rows in watchlist table if contest_id (job_id)==contest_id in database $watchlist_table = mysqli_query($conn, "SELECT * FROM watchlist WHERE contest_id='$contest_id'") or die("Error: " . mysqli_error($watchlist_table));
}

if (mysqli_num_rows($watchlist_table) > 0) {

    //get rows from content table
    $contentsTable = mysqli_query($conn, "SELECT * FROM contests WHERE id='$contest_id'")
    or die("Error: " . mysqli_error($conn));

    //to can use the rows in users table 
    $row_contents = mysqli_fetch_array($contentsTable, MYSQLI_ASSOC);

    //get rows from users table
    $userTable = mysqli_query($conn, "SELECT * FROM users WHERE id!='" . $dcs_user->user['id'] . "'")
        or die("Error: " . mysqli_error($conn));

    require 'vendor/vendor/phpmailer/phpmailer/PHPMailerAutoload.php';
    require 'vendor/autoload.php';

    $mail = new PHPMailer;
    $mail->IsSMTP();
    $mail->SMTPAuth = true;
    //$mail->SMTPDebug=2;
    //$mail->Debugoutput = 'html';

    $mail->SMTPOptions =
        [
            'ssl' => [
                'verify_peer' => false,
                'verify_peer_name' => false,
                'allow_self_signed' => true,
            ],
        ];

    $mail->Host = 'smtp.gmail.com';
    $mail->Username = 'faresalkhwaja@gmail.com';
    $mail->Password = 'elkhawajah1';
    $mail->SMTPSecure = 'ssl';
    $mail->Port = 465;

    //to select all the email in database
    while ($row_user = mysqli_fetch_array($userTable, MYSQLI_ASSOC)) {

        $mail->From = 'tasqat';
        $mail->FromName = 'tasqat';
        $mail->addReplyTo('faresalkhwaja@gmail.com', 'tasqat');
        $mail->addAddress($row_user['email'], $row_user['email']);

        $mail->Subject = "new comment";

        $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

        $mail->Body = "job title :" . $row_contents['title'] . "<br>" . "user name :" . $row_comment['display_name'] . "<br>" . "date : " . $row_comment['date'] . "<br>" . "comment : " . $row_comment['comment'] . "<br>" . "host : " . $actual_link;

        $mail->AltBody = 'this is body';
    }
}//end while loop
  • 写回答

1条回答 默认 最新

  • doudengshen5591 2016-08-01 15:24
    关注

    Your hosting provider likely has disabled emailing to prevent its system being used for spamming. You should contact them to see if they will enable it for you.

    If they will not, you may want to consider using a third-party service.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化