mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
import Sendcloud = require('sendcloud');
|
|
|
|
const sendcloud = new Sendcloud(
|
|
'apiUser',
|
|
'apiKey',
|
|
'nobody@example.com',
|
|
);
|
|
|
|
sendcloud.send('nobody@example.com', 'test', 'test mail');
|
|
|
|
sendcloud.sendEmailSmtp('nobody@example.com', 'test', 'test mail');
|