用于Mailgun附件的JQuery上传文件

时间:2015-02-18 09:09:27

标签: php jquery ajax jquery-file-upload mailgun

我需要使用Mailgun将一些文件附加到电子邮件中。 实际上我通过ajax将所有数据(从,到,主题......)发送到php脚本。 对于上传文件,我使用JQuery.fileupload.js,将文件上传到服务器并给我回名称和网址。

这里有一个简单的Mailgun请求:

$result = $mgClient->sendMessage($domain, array(
'from'    => 'Excited User <cm.carlo.martini@gmail.com>',
'to'      => 'foo@example.com',
'cc'      => 'baz@example.com',
'bcc'     => 'bar@example.com',
'subject' => 'Hello',
'text'    => 'Testing some Mailgun awesomness!',
'html'    => '<html>HTML version of the body</html>'), array(
'attachment' => array('@/path/to/file.txt', '@/path/to/file.txt')));

我尝试将文件路径添加到&#34;附件&#34;数组但不起作用。 如何使用他们的网址发送这些文件? 可能是因为&multi39 / multi-form-data&#39; ...

0 个答案:

没有答案