1.1.10 • Published 3 months ago

seamailer-nodejs v1.1.10

Weekly downloads
-
License
ISC
Repository
-
Last release
3 months ago

Seamailer Node SDK

Sample usage of the sdk

Testing connection

new SeaMailerClient("apiKey").connectionCheck().then();

Creating contacts

await seamailerClient.createContact({
    contacts: [
        {
            email: user.email,
            firstName: user.firstName,
            lastName: user.lastName,
            ...
            groupIds: [1003, 50696] // Optional - to add contacts to groups
        },
    ],
});

Creating single contacts

await seamailerClient.createSingleContact({
    email: user.email,
    firstName: user.firstName,
    lastName: user.lastName,
    ...
    groupIds: [1003, 50696] // Optional - to add contacts to groups
});
1.1.9

5 months ago

1.1.8

5 months ago

1.1.10

3 months ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago