4

I am trying to send mail in symfony with attachment with the help of mailgun

I have referred this Question. And this Reference. But didn't helped me.

This is my function,

public function sendMail($to, $subject, $body, $attachment = null)
{
    $mgClient = new Mailgun($this->container->getParameter('mailgun_key'));
    $domain = $this->container->getParameter('mailgun_domain');
    $content = [
        'from' => $this->container->getParameter('mailgun_from'),
        'to' => 'tester <' . $to . '>',
        'subject' => $subject,
        'text' => $body
    ];
    if (!empty($attachment)) {
        $result = $mgClient->sendMessage("$domain", $content);
    } else {
        $result = $mgClient->sendMessage("$domain", $content, [
            'attachment[0]' => [$attachment]
        ]);
    }
    return $result;
}

In attachment, I'm passing the file path. i.e /home/mypc/Downloads/test.txt

But I'm receiving only blank mail. Attachment is not coming.

Where am I wrong? Please help.

Community
  • 1
  • 1
Keyur
  • 1,113
  • 1
  • 23
  • 42

3 Answers3

2

The mailgun attachments documentation has the following information:

Attachments

You may attach a file from memory or by a file path.

From file path

$mg->messages()->send('example.com', [
  'from'    => 'bob@example.com', 
  'to'      => 'sally@example.com', 
  'subject' => 'Test file path attachments', 
  'text'    => 'Test',
  'attachment' => [
    ['filePath'=>'/tmp/foo.jpg', 'filename'=>'test.jpg']
  ]
]);

From memory

// Some how load the file to memory
$binaryFile = '[Binary data]';

$mg->messages()->send('example.com', [
  'from'    => 'bob@example.com', 
  'to'      => 'sally@example.com', 
  'subject' => 'Test memory attachments', 
  'text'    => 'Test',
  'attachment' => [
    ['fileContent'=>$binaryFile, 'filename'=>'test.jpg']
  ]
]);

Inline attachments

$mg->messages()->send('example.com', [
  'from'    => 'bob@example.com', 
  'to'      => 'sally@example.com', 
  'subject' => 'Test inline attachments', 
  'text'    => 'Test',
  'inline' => [
    ['filePath'=>'/tmp/foo.jpg', 'filename'=>'test.jpg']
  ]
]);
Jared Forth
  • 1,577
  • 6
  • 17
  • 32
1

Please replace below code

$result = $mgClient->sendMessage("$domain", $content, [
      'attachment[0]' => [$attachment]
]);

With

$result = $mgClient->sendMessage("$domain", $content, array(
      'attachment' => array($attachment)
));

Eg.

$result = $mgClient->sendMessage("$domain", $content, array(
    'attachment' => array('/home/mypc/Downloads/test.txt')
));

Referance: https://documentation.mailgun.com/user_manual.html#sending-via-api

Gopal Joshi
  • 2,350
  • 22
  • 49
  • Not working. Tried already. Is there any issue with attaching MIME-TYPE? I don't know how to do that. – Keyur Apr 17 '17 at 12:57
0

Example below works for me.

Test

$mgClient = new Mailgun('key-abcfdfa5b40b6ea0ec0ccf9c33a90y65');
$domain = "sandbox111df299cae04a3ea77733f374b73oi8.mailgun.org";

// SEND
$result = $mgClient->sendMessage(
    $domain,
    [
        'from'    => 'Sender <mailgun@sandbox111df299cae04a3ea77733f374b73oi8.mailgun.org>',
        'to'      => 'Receiver <bentcoder@sandbox111df299cae04a3ea77733f374b73oi8.mailgun.org>',
        'subject' => 'Test subject',
        'text'    => 'Test message body',
    ],
    [
        'attachment' => [
            '/var/www/html/local/test_app/logo.jpg',
            '/var/www/html/local/test_app/ngrok.png'
        ]
    ]
);
// END

print_r($result);

stdClass Object
(
    [http_response_body] => stdClass Object
        (
            [id] => 
            [message] => Queued. Thank you.
        )

    [http_response_code] => 200
)

You might look into https://github.com/tehplague/swiftmailer-mailgun-bundle as well.

BentCoder
  • 12,257
  • 22
  • 93
  • 165