web-dev-qa-db-ja.com

Mailgunは添付ファイル付きのメールを送信します

Mailgunを添付したメールを送信しようとしています。メール自体は問題ありませんが、添付ファイルがありません。メールガンログにも正常に表示されますが、添付ファイルの配列は空です。

資格情報をexample.comに置き換えました。ファイルはサブディレクトリに配置され、読み取り可能です。

$filename = 'directory/example.pdf';
$parameters = array('from' => 'Example <[email protected]>',
                    'to' => '[email protected]',
                    'subject' => 'Subject',
                    'text' => 'This is just a test.',
                    'attachment[1]' => '@' . $filename);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.mailgun.net/v3/mail.example.com/messages');
curl_setopt($ch, CURLOPT_USERPWD, 'api:key-ThisIsJustARandomString');

curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: multipart/form-data'));
curl_setopt($ch, CURLOPT_POSTFIELDS, $parameters);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);

エラーは発生しません。これは$response

string(103) "{
    "id": "<[email protected]>",
    "message": "Queued. Thank you."
}"

メールガンログ内には、添付ファイルはリストされていません。

"message": {
    "headers": {
        "to": "[email protected]",
        "message-id": "[email protected]",
        "from": "Example <[email protected]>",
        "subject": "Subject"
    },
    "attachments": [],
    "size": 349
},

すべてのドキュメントによると、これが正しい解決策であることがわかりましたが、機能していません。

すべての返信を事前に感謝します。

7
Vestalis

最初のコードを次のように変更します。

_$filename = 'directory/example.pdf';
$parameters = array('from' => 'Example <[email protected]>',
                'to' => '[email protected]',
                'subject' => 'Subject',
                'text' => 'This is just a test.',
                'attachment[1]' => curl_file_create($filename, 'application/pdf', 'example.pdf'));

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.mailgun.net/v3/mail.example.com/messages');
curl_setopt($ch, CURLOPT_USERPWD, 'api:key-ThisIsJustARandomString');

curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: multipart/form-data'));
curl_setopt($ch, CURLOPT_POSTFIELDS, $parameters);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
_

_'@'.$filename_をcurl_file_create($filename, 'application/pdf', 'example.pdf')に変更しました。

ドキュメントを参照 curl_file_create そしてメモでPHP <5.5。

10
Phillip Plum

これは私のために働いた。

<?php
 $path = $filename;
 define('MAILGUN_URL', 'https://api.mailgun.net/v3/domainname'); 
 define('MAILGUN_KEY', 'private api key from mail gun');
 **function sendmailbymailgun**($to,$toname,$mailfromname,$mailfrom,$subject,
  $html,$text,$tag,$replyto, $path){

$array_data = array(
'from'=> $mailfromname .'<'.$mailfrom.'>',
'to'=>$toname.'<'.$to.'>',
'subject'=>$subject,
'html'=>$html,
'text'=>$text,
'o:tracking'=>'yes',
'o:tracking-clicks'=>'yes',
'o:tracking-opens'=>'yes',
'o:tag'=>$tag,
'h:Reply-To'=>$replyto,
 'attachment[0]' =>  curl_file_create(__dir__."\\".$path, 'application/pdf', $path),
 'attachment[1]' =>  curl_file_create(__dir__."\\".$path, 'application/pdf', "example.pdf")
);
$session = curl_init(MAILGUN_URL.'/messages');
curl_setopt($session, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($session, CURLOPT_USERPWD, 'api:'.MAILGUN_KEY);
curl_setopt($session, CURLOPT_POST, true);
curl_setopt($session, CURLOPT_POSTFIELDS, $array_data);
curl_setopt($session, CURLOPT_HTTPHEADER, array('Content-Type: multipart/form-data'));
curl_setopt($session, CURLOPT_HEADER, false);
curl_setopt($session, CURLOPT_ENCODING, 'UTF-8');
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
curl_setopt($session, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($session);
curl_close($session);
$results = json_decode($response, true);
return $results;
}

  //: call the function
  $res = sendmailbymailgun("[email protected]","Recipeint Name", "Sender Name", "[email protected]","Email subject","Email body. find two attachment","","tags", "[email protected]", $path);
  echo "<pre>".print_r($res, true)."</pre>";  


?>
1

またはAPIを使用します https://documentation.mailgun.com/en/latest/api-sending.html#examples

ドメインとパラメータを設定したら、$ result = $ mgClient-> messages()-> send($ domain、$ params);を使用できます。

1
Craig Stanfield