我正在尝试使用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);
?>