<?php
use BotMan\BotMan\BotMan;
use BotMan\BotMan\Messages\Outgoing\OutgoingMessage;
use BotMan\BotMan\Messages\Attachments\File;
$botman = resolve('botman');
$botman->hears('Send PDF', function ($bot) {
$attachment = new File('/pdf/example1.pdf', [
'custom_payload' => true,
]);
$message = OutgoingMessage::create('This is your PDF')
->withAttachment($attachment);
$bot->reply($message);
});
It shows the message "This is your PDF" but without attachment, I tried with the full url, but doesn't work either. The pdf folder is located in the public folder. I'm using Facebook Driver.
Description:
this is the code:
It shows the message "This is your PDF" but without attachment, I tried with the full url, but doesn't work either. The pdf folder is located in the public folder. I'm using Facebook Driver.