在使用cpanel管理的服务器上使用mail()选项

时间:2017-09-08 20:21:53

标签: php email cpanel

大家好,我真的很陌生,我已经搜遍过,无法找到一个好的指南或说明如何处理这个问题。 到目前为止,我一直在运行我的网页仅用于测试WAMPP,我知道为了使MAIL()函数工作,你需要在PHP.ini中设置参数并使用像hmail这样的mailclient。现在这一切都在我身后。 所以我有一个域,我收到了一个CPanel接口来管理它。我现在也有邮件服务器。 我的问题是我需要在何处以及如何设置SMTP凭据以及如何设置?我希望用户能够在点击“发送”时从网页发送邮件。

如果有任何帮助,这是我的PHP代码:

$to      = 'myemail@mydomainame.com';
$subject = 'prijava_na_tecaj';
$headers = "Ime: " . $update_ime . "\r\n";
$headers .= "Priimek: " . $update_priimek . "\r\n";
$headers .= "Email: " . $update_email . "\r\n";
$headers .= "Telefon: " . $update_telefon . "\r\n";
$headers .= "Ime: " . $update_izobrazba . "\r\n";
$headers .= "Ime: " . $update_kraj . "\r\n";
$headers .= "Status: " . $id_sem_oseba . "\r\n";

mail($to, $subject, $headers);

if(@mail($to, $subject, $headers)){
  echo "Mail Sent Successfully";
}else{
  echo "Mail Not Sent";
}

1 个答案:

答案 0 :(得分:0)

它建议你使用像phpmailer这样的库,这里是链接https://packagist.org/packages/phpmailer/phpmailer。该库提供了发送电子邮件的所有必要方面。 trycatch将为您提供有关发送电子邮件的可能错误的信息。

要从cPanel获取凭据,请转到电子邮件并创建电子邮件帐户,因为邮件将被发送,然后选择此电子邮件并单击“安装电子邮件客户端”。凭证将在那里,主机,端口,smptSecure等。

这里有一个例子:

<?php
//Import PHPMailer classes into the global namespace
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require 'vendor/autoload.php';

$mail = new PHPMailer(true);
try {
    //Server settings
    $mail->SMTPDebug = 2;                             // Enable verbose debug output
    $mail->isSMTP();                                      // Set mailer to use SMTP
    $mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup SMTP servers
    $mail->SMTPAuth = true;                               // Enable SMTP authentication
    $mail->Username = 'user@example.com';                 // SMTP username
    $mail->Password = 'secret';                           // SMTP password
    $mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
    $mail->Port = 587;                                    // TCP port to connect to

    //Recipients
    $mail->setFrom('from@example.com', 'Mailer');
    $mail->addAddress('joe@example.net', 'Joe User');     // Add a recipient
    $mail->addAddress('ellen@example.com');               // Name is optional
    $mail->addReplyTo('info@example.com', 'Information');
    $mail->addCC('cc@example.com');
    $mail->addBCC('bcc@example.com');

    //Attachments
    $mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
    $mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name

    //Content
    $mail->isHTML(true);                                  // Set email format to HTML
    $mail->Subject = 'Here is the subject';
    $mail->Body    = 'This is the HTML message body <b>in bold!</b>';
    $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

    $mail->send();
    echo 'Message has been sent';
} catch (Exception $e) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
}