-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLaravel Mail API.postman_collection.json
102 lines (102 loc) · 1.94 KB
/
Laravel Mail API.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"info": {
"_postman_id": "9982cd7f-bcde-4667-a8ef-c09f3f37ed1b",
"name": "Laravel Mail API",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "1948434"
},
"item": [
{
"name": "send-email",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "45b410909034b8f7266cc88a6819174cbeef2079fb2e4fe67a57586af4abec2b",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "accessKey",
"value": "access-key-user-1",
"type": "text"
},
{
"key": "ts",
"value": "2023-08-09T17:13:58+00:00",
"type": "text"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "from",
"value": "[email protected]",
"type": "text"
},
{
"key": "to",
"value": "[email protected]",
"type": "text"
},
{
"key": "sender",
"value": "New English",
"type": "text"
},
{
"key": "receiver",
"value": "Jonatas S.",
"type": "text"
},
{
"key": "subject",
"value": "test api",
"type": "text"
},
{
"key": "template",
"value": "password",
"type": "text",
"disabled": true
},
{
"key": "language",
"value": "en",
"type": "text",
"disabled": true
},
{
"key": "attachments[]",
"type": "file",
"src": [
"/C:/Users/jonat/Downloads/Sobremesa Lvtetia.pdf",
"/C:/Users/jonat/Downloads/MENU DO BAR VATICANO.pdf"
]
}
]
},
"url": {
"raw": "http://localhost:8000/api/email/send",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"email",
"send"
]
}
},
"response": []
}
]
}