SendInBlue를 사용하여 Node.js에서 이메일을 보내는 방법
6949 단어 beginnersjavascriptnodewebdev
비디오 자습서
센드인블루란?
SendInBlue는 Node.js 애플리케이션에서 이메일을 보낼 수 있는 메일 서비스입니다.
Sendinblue 이메일 API 키 받기
계정.
Create new API key
버튼을 클릭합니다. 설정
npm init -y
npm i dotenv sib-api-v3-sdk
.env
라는 파일을 만들고 다음 줄을 추가합니다.API_KEY=<your_api_key>
index.js
라는 파일을 만들고 다음 줄을 추가합니다.const Sib = require('sib-api-v3-sdk')
require('dotenv').config()
const client = Sib.ApiClient.instance
const apiKey = client.authentications['api-key']
apiKey.apiKey = process.env.API_KEY
설명:
require('dotenv').config()
: .env
파일에서 환경 변수를 불러올 때 사용합니다. 그런 다음 Sendinblue 클라이언트에 api 키를 추가해야 합니다.const tranEmailApi = new Sib.TransactionalEmailsApi()
const sender = {
email: '[email protected]',
name: 'Anjan',
}
const receivers = [
{
email: '<email address>',
},
]
설명:
tranEmailApi
로 이메일을 보낼 수 있습니다. 발신자 이메일은 SendinBlue 계정에서 사용한 이메일 계정이어야 합니다.tranEmailApi
.sendTransacEmail({
sender,
to: receivers,
subject: 'Subscribe to Cules Coding to become a developer',
textContent: `
Cules Coding will teach you how to become {{params.role}} a developer.
`,
htmlContent: `
<h1>Cules Coding</h1>
<a href="https://cules-coding.vercel.app/">Visit</a>
`,
params: {
role: 'Frontend',
},
})
.then(console.log)
.catch(console.log)
설명:
sendTransacEmail
방법을 사용하여 이메일을 보낼 수 있습니다. textContent
또는 htmlContent
를 전달해야 합니다. htmlContent
는 textContent
보다 우선합니다. params
를 사용하여 이메일 내용에 매개변수를 전달할 수 있습니다.물체.
node index.js
Sendinblue에는 사용할 수 있는 템플릿이 있습니다. 뉴스레터를 만드는 방법을 가르쳐 달라고 하시면 알려주세요.
뻔뻔한 플러그
이것이 이 블로그의 전부입니다. 간단하게 설명하려고 노력했습니다. 막히면 나에게 질문을 할 수 있습니다.
그런데 저는 제 능력으로 큰 가치를 제공할 수 있는 회사에서 새로운 기회를 찾고 있습니다. 풀 스택 웹 개발에 능숙하고 세상을 혁신하는 데 열정을 가진 사람을 찾고 있는 채용 담당자라면 언제든지 저에게 연락하십시오. 또한 모든 프리랜서 프로젝트에 대해 이야기할 수 있습니다. 나는 Upwork에서 사용할 수 있습니다
콘택트 렌즈
Reference
이 문제에 관하여(SendInBlue를 사용하여 Node.js에서 이메일을 보내는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/thatanjan/how-to-send-emails-from-nodejs-with-sendinblue-1cho텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)