An open API service indexing awesome lists of open source software.

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

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');
}
}
```