1.0.4 • Published 2 years ago

ncp-sdk v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

ncp-sdk

codecov Build Status License: MIT

install

npm install ncp-sdk
yarn add ncp-sdk

Docs

ClassMethodDescription
NcloudSDKsendMailNCP의 Cloud Outbound Mailer를 이용하여 메일을 전송합니다
NcloudSDKsendSMSNCP의 Simple & Easy Notification Service를 이용하여 문자 메세지를 전송합니다

Mail 전송 예시

import { NcloudSDK } from "ncp-sdk"

const sdk = new NcloudSDK({
    accessKey: process.env.ACCESS_KEY,
    secretKey: process.env.SECRET_KEY,
})

sdk.sendMail({
    sender: "pukuba@kakao.com",
    receiver: "20sunrin041@sunrint.hs.kr",
    title: "test email title",
    content: "test email content",
}).then((res) => console.log(res))

메세지 전송 예시

import { NcloudSDK } from "ncp-sdk"

const sdk = new NcloudSDK({
    accessKey: process.env.ACCESS_KEY,
    secretKey: process.env.SECRET_KEY,
    smsKey: process.env.SMS_KEY,
})

sdk.sendSMS({
    sender: "010xxxxxxxx",
    receiver: "010xxxxxxxx"
    content: "test sms content"
}).then((res) => console.log(res))
1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago