首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Mandrill API错误

Mandrill API错误
EN

Stack Overflow用户
提问于 2016-08-23 18:53:07
回答 1查看 1.5K关注 0票数 1

我第一次使用Mandrill API发送电子邮件,

但是我得到了这个错误。

出现mandrill错误: Mandrill_ValidationError -必须指定键值致命错误:未捕获异常'Mandrill_ValidationError‘,消息为’您必须在Mandrill api-php/src/manrill.php中指定一个键值‘。php:153堆栈跟踪:#0 Mandrill api-php/src/manrill.php(132):Mandrill>castError(数组) #1 mandrill-api-php/src/Mandrill/Messages.php(80):Mandrill>call(’Messages/send‘,数组) #2 mandrill.php(88):Mandrill_Messages->send(数组,false) #3 {main}在第153行的Mandrill.php中抛出

这是我的代码

代码语言:javascript
复制
<?php

require_once 'mandrill-api-php/src/Mandrill.php';

$servername = "localhost";
$username = "root";
$password = "";
$table = '';

$conn = mysql_connect($servername, $username, $password);


if (!$conn) {
    die("Connection failed: " . mysqli_connect_error());
}



$selected = mysql_select_db("DB Name")
    or die("Could not select database");

$query=mysql_query(Query);


$table .= "<table width='auto'  height='auto' border='1'  bordercolor='#003399'  style='color:#FF0000;table-layout:fixed' cellpadding=0 cellspacing=0>
<tr>
<th>User ID</th>
<th>Full Name</th>
<th>Username</th>
<th>Email ID</th>

</tr>";

while($row = mysql_fetch_array($query)) 
{ 
$table .= "<tr>";
$table .= "<td>" . $row['id'] . "</td>";
$table .= "<td>" . $row['fullname'] . "</td>";
$table .= "<td>" . $row['username'] . "</td>";
$table .= "<td>" . $row['useremail'] . "</td>";
$table .= "</tr>"; 
}
$table .= "</table><br>";


try {
$mandrill = new Mandrill(API Key);
$message = array(
    'html' => $table,
    'subject' => 'Notification Email',
    'from_email' => 'Example@example.com',
    'from_name' => 'Test',
    'to' => array(
        array(
            'email' => 'Example@example.com',
            'name' => 'Test',
            'type' => 'to'
        )
    ),
    'important' => false,
    'track_opens' => null,
    'track_clicks' => null,
    'auto_text' => null,
    'auto_html' => null,
    'inline_css' => null,
    'url_strip_qs' => null,
   // A mandrill error occurred: Mandrill_Unknown_Subaccount - No subaccount exists with the id 'customer-123'
throw $e;
}
?>
'preserve_recipients' => null,
    'view_content_link' => null,
    'tracking_domain' => null,
    'signing_domain' => null,
    'return_path_domain' => null,

);
$async = false;
$result = $mandrill->messages->send($message, $async);
print_r($result);


} 
catch(Mandrill_Error $e) {

echo 'A mandrill error occurred: ' . get_class($e) . ' - ' . $e->getMessage();

throw $e;
}
?>
EN

回答 1

Stack Overflow用户

发布于 2018-06-19 20:13:56

代码语言:javascript
复制
<pre>/*
Before coding, you have to make configurations in Mandrill.

Step 1: Enter Mandrill and register your domain.

Step 2: Configure DNS: DKIM and SPF (This is a good tutorial: https://www.youtube.com/watch?v=uEjP_smeLjU) at https://mandrillapp.com/settings/sending-domains

Step 3: Get a KEY API (https://mandrillapp.com/settings)

Step 4: Code with PHP

Step 5: Good luck! :)
*/


/*LIBS*/
include 'lib/mandrill-api-php/src/Mandrill.php';
$mandrill = new Mandrill('YOUR API KEY HERE');

/*ADMIN AND USER EMAIL*/
$admin_email = 'your_email@your_domain.com';
$client_email = 'the_email_of_the_client@mail.com';

/*attach PDF*/
$attachment = file_get_contents('the_route_to_your_pdf');
$attachment_encoded = base64_encode($attachment);

try{
    $user_message = array(
        'subject' => 'Your Subject here',
        'from_email' => $admin_email,
        'from_name' => 'your_domain_for_example',
        'html' =>  '<p>Aquí va la plantilla HMTL</p>',
        'to' => array(array('email' => $client_email, 'name' => 'Recipient 1')),
        'merge_vars' => array(array(
            'rcpt' => 'recipient1@domain.com',
            'vars' =>
            array(
                array(
                    'name' => 'FIRSTNAME',
                    'content' => 'Recipient 1 first name'),
                array(
                    'name' => 'LASTNAME',
                    'content' => 'Last name')
            ))),
        'attachments' => array(
            array(
                'content' => $attachment_encoded,
                'type' => "application/pdf",
                'name' => 'the_name_of_the_attach.pdf',
            ))
    );

    $res_user_mandrill = $mandrill->messages->send($user_message, $async=false, $ip_pool=null, $send_at=null);

} catch(Mandrill_Error $e) {

}

</pre>
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/39099175

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档