我正在使用PHP和Mailgun制作电子邮件订阅表单,但我只将电子邮件发送到我在mailgun.com用于创建帐户的主电子邮件地址。当我用电子邮件填写表格时,我会收到确认信,但它不适用于其他电子邮件。为甚麽这样呢?这是代码:
Init文件:
<?php
require_once 'vendor/autoload.php';
define('MAILGUN_KEY', 'key-2ce40f5e23c90b0d666f3e....');
define('MAILGUN_PUBKEY', 'pubkey-8cf7125996....');
define('MAILGUN_DOMAIN', 'sandboxc03eaee7674c4a9094ffa8d61845ddf5.mailgun.org');
define('MAILING_LIST', 'audimas@sandboxc03eaee7674c4a9094ffa8d61845ddf5.mailgun.org');
define('MAILGUN_SECRET', '...');
$mailgun = new Mailgun\Mailgun(MAILGUN_KEY);
$mailgunValidate = new Mailgun\Mailgun(MAILGUN_PUBKEY);
$mailgunOptIn = $mailgun->OptInHandler();
?>
主index.php文件:
<?php
require_once 'init.php';
if(isset($_POST['name'], $_POST['email']))
{
$name = $_POST['name'];
$email = $_POST['email'];
$validate = $mailgunValidate->get('address/validate', [
'address' => $email
])->http_response_body;
if($validate->is_valid)
{
$hash = $mailgunOptIn->generateHash(MAILING_LIST, MAILGUN_SECRET, $email);
$mailgun->sendMessage(MAILGUN_DOMAIN, [
'from' => 'noreply@audimas.com',
'to' => $email,
'subject' => 'Please confirm your subscription to us',
'html' => "Hello {$name}<br><br>You signed up to our mailing list. Please confirm below"
]);
$mailgun->post('lists/' . MAILING_LIST . '/members', [
'name' => $name,
'address' => $email,
'subscribed' => 'no'
]);
header('Location: http://localhost:8888/exam/index.php');
}
}
?>
发布于 2017-06-03 01:19:03
您正在使用sandboxc03eaee7674c4a9094ffa8d61845ddf5.mailgun.org
沙箱子域发送电子邮件。
您应该得到一个错误,例如:
Error: Sandbox subdomains are for test purposes only. Please add your own domain or add the address to authorized recipients in Account Settings.
要发送多封电子邮件,您必须首先创建自己的域。您可以从这里创建域
确保您的域是verified.If,您的域未经验证,那么您将得到如下错误:
Error: The domain is unverified and requires DNS configuration. Log in to your control panel to view required DNS records.
https://stackoverflow.com/questions/44261874
复制