You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: