发送新消息 MAILCHIMP,返回空
Posted
技术标签:
【中文标题】发送新消息 MAILCHIMP,返回空【英文标题】:Send new message MAILCHIMP, returns empty 【发布时间】:2021-05-02 17:51:30 【问题描述】:我正在使用MAILCHIMP
单独发送电子邮件而不使用templates
,但是return
是空的,发送请求消息的正确方法是什么?
-答案returns
为空,邮件未到
-这是我的发帖方式
路线:http://localhost:6002/api/mailchimp/message/send
"message": [
"subject": "student",
"from_email": "ingenieria@uni.edu.pe",
"html":"<p>Estudia en la UNI</p>",
"text": "Estudia en la UNI",
"to": [
"email": "pedro.24@gmail.com",
"type": "to"
]
]
功能
public function send(Request $request)
$message = $request->message;
$mailchimp = new MailchimpTransactional\ApiClient();
$mailchimp->setApiKey(env('MAILCHIMP_KEY'));
$response = $mailchimp->messages->send(
[
"message"=>$message
]
);
return response()->json($response, 200);
PD:在另一种方法中,如果可行的话,我会在那里使用模板接收帖子 => $respuesta = $mailchimp->messages->sendTemplate(...)
【问题讨论】:
【参考方案1】:我意识到在我发送的 json 中有 brackets []
,它不应该去,它看起来像这样并且它有效
"message":
"subject": "student",
"from_email": "ingenieria@uni.edu.pe",
"html":"<p>Estudia en la UNI</p>",
"text": "Estudia en la UNI",
"to": [
"email": "pedro.24@gmail.com",
"type": "to"
]
【讨论】:
以上是关于发送新消息 MAILCHIMP,返回空的主要内容,如果未能解决你的问题,请参考以下文章
aSmack - MultiUserChat.getJoinedRooms 返回空迭代器
intent.getParcelableExtra() 仅在第一次发送推送通知时返回空值
尝试将新成员添加到 MailChimp 列表会导致错误 400(“此值不应为空”)