beyondcode / laravel-mailbox

Catch incoming emails in your Laravel application
https://beyondco.de/docs/laravel-mailbox/getting-started/introduction
MIT License
1.04k stars 127 forks source link

Amazon SES support? #115

Open jw7712 opened 1 year ago

jw7712 commented 1 year ago

According to Chat GPT there is a way to use amazon SES with this package:

Yes, it is possible to receive inbound emails from Amazon SES using Beyond Code Laravel Mailbox. Laravel Mailbox provides an easy-to-use interface to handle incoming emails for your Laravel application.

To receive inbound emails from Amazon SES using Laravel Mailbox, you can follow these steps:

Configure your Amazon SES account to receive inbound emails. You will need to create an S3 bucket and an Amazon SNS topic to receive and process incoming emails.

Install Laravel Mailbox package using composer.

Configure Laravel Mailbox to use Amazon SES as the email driver. In your Laravel Mailbox configuration file, you can specify the SES driver and provide the required credentials.

Configure the incoming email route in Laravel Mailbox to handle incoming emails. You can define a callback function that will receive the incoming email and process it as per your application requirements.

Test the setup by sending an email to your Amazon SES email address and verify if it is received and processed by your Laravel application.

Beyond Code Laravel Mailbox provides comprehensive documentation on how to configure and use Laravel Mailbox for handling incoming emails. You can refer to the Laravel Mailbox documentation for detailed instructions on how to set up Laravel Mailbox to work with Amazon SES.

When i ask for the url it gives me a non existing url: https://laravel-mailbox-docs.beyondco.de/docs/usage/drivers/amazon-ses.html

Does this package support amazon SES, and where can i find the documentation?

dgillier commented 1 year ago

anychance to get SES support ? Thanks !

lucacastelnuovo commented 1 year ago

@jw7712 here is a list with supported drivers: https://beyondco.de/docs/laravel-mailbox/drivers/drivers

Please note that ChatGPT will hallucinate some answers and should not be trusted without checking the answer yourself.

Here is a PR trying to implement an SES driver: https://github.com/beyondcode/laravel-mailbox/pull/79.