1

在我的网站上,我们正在进行一项促销活动,用户输入他们的姓名和电子邮件,然后我们向他们发送一封具有相同标题、相同文本和最后嵌入/插入到电子邮件中的凭证图像的电子邮件(未附)。

我们认为我们可以轻松地复制粘贴,但在过去的 6 周中,我们已经发送了 1000 多封电子邮件,这已经无法撤消了。

我们有一个 php 代码,可以简单地向我们发送他们的信息。有谁知道在 php 末尾添加什么,以便当有人输入他们的电子邮件和姓名时,我们可以自动向他们发送一封带有“模板”标题、文本和图像的电子邮件?

我尝试了很多不同的方法,但大多数程序都是通讯发送者而不是自动回复。也不能使用 gmail 自动回复,因为我们也会收到其他不同的电子邮件。我们不想将促销发送给给我们发送电子邮件的每个人。

有什么帮助吗?

干杯。

4

2 回答 2

0

这是一个示例脚本,您可以在没有任何第三方类的情况下使用。

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?> 

您可以将 html 内容添加到 $message 变量

于 2016-02-27T23:41:18.497 回答
0

Check Github for sendemail repository. It allows you to send emails through php. What you can do is that you can set sendemail repository in your project then whenever someone enter an email id run a php script.For configuring sendemail everything is provided on Github.

Link: https://github.com/mogaal/sendemail

Script will look something like this:

$message = "Thank you for your interest. We will get back to you as soon as possible.<br />Sincerely,<br />(My Name)";
$subject = "Confirmation";

$headers2 = "From: $webMaster\r\n";
$headers2 .= "Content-type:  text/html\r\n";
mail($leademail, $subject, $message, $headers2);
于 2016-02-27T23:36:20.900 回答