DreamFactory发送电子邮件的问题

时间:2014-08-30 15:48:56

标签: php json rest

好的,所以我设置了我自己的DreamFactory本地运行副本......所有这些都适用于托管版本......但是当我尝试发送测试电子邮件时我的问题是这样说:

{
"to": [
    {
      "name": "Demo",
      "email": "demo@acme.com"
    }
  ],
  "subject": "Testing SMTP Email Service",
  "body_text": "I am sending a Test email from my DSP."
}

我收到了这个回复:

{
  "error": [
    {
      "context": null,
      "message": "Failed to send to the following addresses:Array\n(\n    [0] =>   demo@acme.com\n)\n",
      "code": 500
    }
  ]
}

在我看来,它试图将所有这些用于电子邮件地址而不是地址本身,我无法弄清楚原因。

1 个答案:

答案 0 :(得分:0)

请尝试升级到最新版本的DSP(v.7.8.8)

我能够在我的localhost上使用这个json,一切都很好:

{
  "to": [{
      "name": "Demo",
      "email": "demo@acme.com"
  }],
  "subject": "Testing SMTP Email Service",
  "body_text": "I am sending a Test email from my DSP."
}

如果升级后出现其他问题,请告知我们。

谢谢,

标记