我一直在尝试使用php发送电子邮件,当我尝试在Linux上运行代码但无法在Windows 8上运行时,我能够发送电子邮件,我在我的Windows上安装了XAMPP。这是代码。
<?php
$msg = "Checking Email";
$msg = wordwrap($msg,70);
mail("myemailaddress","My subject",$msg);
?>
我在线查看并发现我必须编辑php.ini和sendmail.ini文件。我不确定这是否是正确的解决方案。如果是的话,任何人都可以告诉我我究竟要编辑或更改它,因为我试图编辑这些文件但它仍然无法正常工作。
由于
答案 0 :(得分:0)
如果我是你,我会尝试使用PHPMailer。我更喜欢在内置系统的PHP中使用它。我发现它不那么麻烦。 以下是您可以用它做的一些事情:
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
$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 encryption, 'ssl' also accepted
$mail->From = 'from@example.com';
$mail->FromName = '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');
$mail->WordWrap = 50; // Set word wrap to 50 characters
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$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';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
有关github page的更多信息。如果您可以使用电子邮件凭据访问Web服务器,那么设置它应该没有问题 - 您需要一个主机,而不仅仅是XAMPP或LAMP(假设您打算最终得到它)。