laravel-mailbox
laravel-mailbox copied to clipboard
IMAP or POP driver?
Hi!
Didn't see this in the documentation nor in the issues.
Is it just me, or is there no way to open up an IMAP or POP connection to a regular mailbox?
Anyone know of a driver to do that?
Thanks, Maarten
Hi,
Also looking for this. Perhaps any tips on how to extend DriverInterface?
Thanks, Bert
Hi,
Thanks for developing this package! Sad that there is still no answer. Just found this package and would like to use it with my own mailserver.
Hi Guys,
look what @barryvdh says here.
So you can retrieve the email and have something like this:
$incomingMail = $this->mailbox->getRawMail($id);
$message = InboundEmail::fromMessage($incomingMail);
$message->save();
In hope this can help you.
It would be nice to provide a driver with an artisan command that would be run to provide pull feature from an imap server. At least a standardized way to do it with the package.
Same with comment-586350369