You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Laravel Microsoft Graph Mail driver - Mail Driver for Office365 and (soon) Google
1
4
2
-
# Laravel Microsoft Graph Mail driver - Mail Driver for Office365
3
5
6
+
Mail driver for the [Laravel framework](https://laravel.com/) to send emails using Microsoft Graph without user authentication and SMTP. Only specify the E-Mail-Address in the FROM-Header of the E-Mail and this package will send the email trough the providers API and put the sent E-Mail in the sender's Mailbox sent folder.
4
7
5
-
Mail driver for the [Laravel framework](https://laravel.com/) to send emails using Microsoft Graph without user authentication and SMTP. Only specify the E-Mail-Address in the FROM-Header of the E-Mail and this Office 365 Package will send the E-Mail trough the Microsoft Graph-Api and put the sent E-Mail in the sender's Mailbox sent folder.
6
-
7
-
**Key features:**
8
+
**O365 Key features:**
8
9
9
10
- Send E-Mails with the Microsoft Graph-Api instead of the SMTP driver
10
11
- Automatically puts the E-Mail in the Sent folder of the user in the From-Header
11
12
- One Application per Organization
12
13
- Supports multiple Domains
13
14
- Supports large file attachments
14
-
- Faster and Error-less than the Office-365 SMTP
15
-
16
-
To use this package you have to register your application [here](https://go.microsoft.com/fwlink/?linkid=2083908). More informations [here](https://docs.microsoft.com/en-us/graph/auth-register-app-v2).
17
-
15
+
- Faster and Error-less than the SMTP protocol
18
16
17
+
---
19
18
20
19
## Install the Package
21
-
22
-
You can install the package with Composer, either run `composer require inlinestudio/mailconnectors`, or edit your `composer.json` file:
23
-
24
-
### Laravel 9
25
-
26
-
For Laravel 9 please use
27
-
28
20
```
29
-
{
30
-
"require": {
31
-
"inlinestudio/mailconnectors": "^1.0"
32
-
}
33
-
}
21
+
composer require inlinestudio/mailconnectors
34
22
```
35
-
23
+
---
36
24
37
25
## Configure
38
26
39
27
28
+
### O365
29
+
30
+
To use this package you have to register your application [here](https://go.microsoft.com/fwlink/?linkid=2083908). More informations [here](https://docs.microsoft.com/en-us/graph/auth-register-app-v2).
40
31
41
32
To obtain needed config values use this [instructions](https://docs.microsoft.com/en-us/graph/auth-v2-service):
0 commit comments