2020-11-05から1日間の記事一覧

Node.js SendGrid Single Senderのテストメール送信

const sgMail = require('@sendgrid/mail');// sgMail.setApiKey(process.env.SENDGRID_API_KEY);sgMail.setApiKey('hogehoge');const msg = { to: 'hoge@hoge.com', from: 'hoge@hoge.com', subject: 'Sending with SendGrid is Fun', text: 'and easy to d…

Node.js SendGrid Single SenderのVerifyまで

テストメール送信ということで、Single Senderを選択。 入力内容の説明は下記。 Single Sender Verification | SendGrid Documentation 送信元の名前 - 受信者がメールを受信したときに表示されるユーザーフレンドリーな名前です。 送信元メールアドレス - …