### Handle Incoming Emails Source: https://beyondco.de/docs/laravel-mailbox/getting-started/introduction Use this snippet to define a listener for incoming emails from a specific address. It allows you to access email properties like the subject. ```php Mailbox::from('marcel@beyondco.de', function (InboundEmail $email) { $subject = $email->subject(); }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.