Skip to content

Commit 3c5332d

Browse files
committed
fixed typos
1 parent ad19cf3 commit 3c5332d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ You can modify the script to use any other API you like or debug-step through th
5858
An example configuration to add the API Mail Adapter to Parse Server could look like this:
5959
6060
```js
61-
const Mailgun = require("mailgun.js");
62-
const formData = require("form-data");
63-
const { ApiPayloadConverter } = require("parse-server-api-mail-adapter");
61+
const Mailgun = require('mailgun.js');
62+
const formData = require('form-data');
63+
const { ApiPayloadConverter } = require('parse-server-api-mail-adapter');
6464
6565
// Configure mail client
6666
const mailgun = new Mailgun(formData);
67-
const mailgunClient = mailgun.client({ username: "api", key: process.env.MAILGUN_API_KEY });
67+
const mailgunClient = mailgun.client({ username: 'api', key: process.env.MAILGUN_API_KEY });
6868
const mailgunDomain = process.env.MAILGUN_DOMAIN;
6969
7070
// Configure Parse Server

0 commit comments

Comments
 (0)