使用emails.txt发送php邮件,并从message.txt发送自定义消息

时间:2016-06-20 14:30:38

标签: php phpmailer

我正在尝试使用PHP发送电子邮件 我有emails.txt,其中包含电子邮件列表和按“;”分隔的名称 我还有content.txt和电子邮件消息,例如“Hello Mr. $ name”

我想为所有用户发送一封电子邮件,使用content.txt文件并使用emails.txt更改$ name以替换字符串$ name

我制作了一些零件,但我卡住了

  <?php
    $file = fopen("emails.txt", "r");
    $filecontent = fopen("content.txt", "r");
    while(!feof($file)){
    $line = fgets($file);
        $to = $line;
         $subject = "This is subject";

         $message = "<b>This is HTML message.</b>";
         $message .= "<h1>This is headline.</h1>";

         $header = "From:abc@somedomain.com \r\n";
         $header .= "MIME-Version: 1.0\r\n";
         $header .= "Content-type: text/html\r\n";

         $retval = mail ($to,$subject,$message,$header);

         if( $retval == true ) {
            echo "Message sent successfully...";
         }else {
            echo "Message could not be sent...";
     }

    }
    fclose($file);


  ?>

另一部分

<?php

$path_to_file = 'content.txt';
$file_contents = file_get_contents($path_to_file);
$file_contents = str_replace("$name","$correctname",$file_contents);
file_put_contents($path_to_file,$file_contents);

?>

0 个答案:

没有答案