https://github.com/mehedimi/laravel-amp-mail
Send amp mail through your Laravel app
https://github.com/mehedimi/laravel-amp-mail
amp amp-email email laravel mail php
Last synced: 8 months ago
JSON representation
Send amp mail through your Laravel app
- Host: GitHub
- URL: https://github.com/mehedimi/laravel-amp-mail
- Owner: mehedimi
- License: mit
- Created: 2020-06-13T10:35:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-30T11:42:22.000Z (about 4 years ago)
- Last Synced: 2025-02-02T06:23:36.645Z (8 months ago)
- Topics: amp, amp-email, email, laravel, mail, php
- Language: PHP
- Homepage: https://packagist.org/packages/mehedimi/laravel-amp-mail
- Size: 10.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Laravel AMP Mail
Send amp mail through your Laravel app## Installation
```bash
composer require mehedimi/laravel-amp-mail
```## Quick Usages
To send amp email just use `Mehedi\AmpMail\Mimes\Amp` trait on your mail class and load amp view by using `amp` method.
### Example
```php
amp('amp')
->view('html')
->with('name', 'Mehedi Hasan');
}
}
```