gpt4 book ai didi

php - 将结果从随机数组发送到电子邮件 php

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:39:23 24 4
gpt4 key购买 nike

经过数小时的尝试,我正在寻求帮助。

我有以下代码,我想将结果通过电子邮件发送到电子邮件。

这是我的代码:

$emailme = "myemail@somewhere.com";

$subject = "Randomly selected from array";
$headers = "From: $emailme\n";

$message = "Here is the Randomly selected from array.\n
Random text: $r_array";

$r_array=file('file.txt');
shuffle($r_array);
$output = "<p><center><b>The Randomly Selected Text is:</b></p><b>" .
$r_array[0] . "All done, echoing results.";

mail($emailme,$subject,$message,$headers);

到目前为止,我能够将结果回显到屏幕上,但无法通过电子邮件发送结果。

最佳答案

发送电子邮件非常简单,例如:

<?php
$r_array=file('file.txt');
shuffle($r_array);

$to = "recipient@example.com";
$subject = "Random Selected Text";
$body = "<p><center><b>The Randomly Selected Text is:</b></p><b>" . $r_array[0] . "All done, echoing results.";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>

像这样的东西应该可以工作,否则,邮件服务器可能没有在 web 服务器上正确配置。

关于php - 将结果从随机数组发送到电子邮件 php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10991294/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com