为什么这个剧本行不通?我只想要一个电子邮件发送到hello@weblabcompany.com与订阅者的电子邮件,以便我可以跟进他们以后
<div class="col-2" id="sub-box">
<h1 class="text-white margin-bottom"> Subscribe to Web Lab </h1>
<h2 class="text-white margin-bottom"> Receive articles as they are published </h2>
<form name="subscribe" action="/submail.php" method="post"> <input type="email" value="Email"> <input type="submit" value="Send" class="width-25"> </form>
</div>
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "hello@weblabcompany.com";
$email_subject = "New Sub";
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
!isset($_POST['email'])
{
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$email = $_POST['email']; // required
//$error_message = "";
//$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
//if(!preg_match($email_exp,$email_from)) {
//$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
//}
//$string_exp = "/^[A-Za-z .'-]+$/";
//if(!preg_match($string_exp,$name)) {
//$error_message .= 'The First Name you entered does not appear to be valid.<br />';
//}
//if(!preg_match($string_exp,$email)) {
//$error_message .= 'The Last Name you entered does not appear to be valid.<br />';
//}
//if(strlen($message) < 2) {
//$error_message .= 'The Comments you entered do not appear to be valid.<br />';
//}
//if(strlen($error_message) > 0) {
//died($error_message);
//}
$email_message = "Form details below.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
$email_message .= "email: ".clean_string($email)."\n";
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email);
?>
<!-- include your own success html here -->
Thank you for contacting us. We will be in touch with you very soon.
<?php
}
?>
您没有将输入的name
属性设置为email
。
问题内容: 现在,我已经建立了一个PHP电子邮件表单,并且一切正常。但是,在测试时,我只得到了发件人的电子邮件地址作为名称。我想要的是发件人的姓名,例如: 约翰·杜 科目科目科目 代替: j.doe@website.com 科目科目科目 下面是代码… 有谁可以帮助我吗?谢谢。 PHP: 问题答案: 在您的4行说完之后添加一行:
我正在使用Google表单将多条消息合并到一个每日电子邮件中,使用脚本和每日定时触发器发送(代码从这里复制,下面是我的版本)。 例如,一个电子邮件地址是abc@example.co.uk,他们收到了电子邮件,但在我的收件箱(xyz@example.co.uk)中是发送到abc@example.co.uk的电子邮件,但不是转发的消息或回复。 有什么办法阻止这一切吗?
我有一个活动,它有两个文本字段,用户可以在其中输入一些文本。 在它们下面有一个按钮,我想将输入的信息提交到两个文本字段。可以是电子邮件或消息。 是否有一种方法可以让活动基本上向我提交用户信息?
问题内容: 我在linux机器上,我监视进程使用情况。大多数时候,我将离开系统,并且可以在设备上访问Internet。因此,我计划编写一个shell脚本,该脚本可以向我发送该过程的输出。 可能吗? 如果是的话,如何制作一个shell脚本给我发邮件? 请提供摘要以开始使用。 问题答案: 是的,它可以正常工作,并且通常用于:
问题内容: 当用户完成HTML表单的填写后,我想通过PHP发送电子邮件,然后通过电子邮件从表单中发送信息。我想从显示具有表单的网页的同一脚本中执行此操作。 我找到了此代码,但是邮件未发送。 用PHP发送电子邮件的代码是什么? 问题答案: 编辑(#1) 如果我理解正确,那么您希望将所有内容都放在一个页面中并从同一页面执行。 您可以使用下面的代码从单个页面发送邮件,例如或 此答案与我的原始答案之间的唯