[reloop/reloop-email]
PHP
Composer-ready PHP SDK with Laravel and Symfony guides for transactional and marketing email.
1
Install the PHP package
bash
composer require reloop/reloop-email2
Send email from PHP
send_email.php
1$reloop = Reloop::client(getenv('RELOOP_API_KEY'));2
3$reloop->emails->send([4 'from' => 'Acme <onboarding@yourdomain.com>',5 'to' => ['delivered@yourdomain.com'],6 'subject' => 'Hello from PHP',7 'html' => '<strong>It works!</strong>',8]);3
GitHub, examples, and API reference
4
Need more help?
- Need help? Contact Support.
- Chat with Reloop developers on Discord.
- Check out our changelog.
- Questions? Contact Sales.
- LLM? Read llms.txt.
Send with PHP.
Get an API key and ship transactional email from PHP using the official SDK.