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
// field in user resource which contains password constrains. Should be virtual field
94
+
passwordField: 'password',
95
+
96
+
// domain part should be verified in Mailgun
97
+
sendFrom: 'no-reply@devforth.io',
98
+
99
+
adapter: newEmailAdapterMailgun({
100
+
apiKey: process.env.MAILGUN_API_KEYasstring,
101
+
domain: process.env.MAILGUN_DOMAINasstring,
102
+
//baseUrl is optional, if not provided, will default to "https://api.mailgun.net" but if you are using Mailgun EU, you should use "https://api.eu.mailgun.net" instead
103
+
baseUrl: process.env.MAILGUN_REGION_URLasstring,
104
+
}),
105
+
106
+
}),
107
+
]
108
+
```
109
+
110
+
Make sure to place your Mailgun credentials in `.env` file/environment.
0 commit comments