1

アプリケーションで通知メールを送信したいのですが、sendgrid を使用しようとしています。私のアプリケーションは CoffeeScript で書かれています。

enter code here 
from_address = 'noreply@example.co'
subject = 'This Is The Subject'
html_body = '<table style="font-family: verdana, tahoma, sans-serif; color: #000;">
          <tr> <td>
          <h2>Hello,</h2> <p>Hello!!</p>
                          <p>%%name%% %%surname%% send you a message</p>
          </table>'
sendgrid = require('sendgrid')(api_key)
Email = sendgrid.Email
email = new Email(
  to: to_address
  from: from_address
  subject: subject
  text: text_body
  html: html_body)

recipients = [
  'example1@example.com'
  'example2@example.com'
]
i = 0
while i < recipients.length
  email.addTo recipients[i]
  i++

substitutions = {
  "%%name%%": [
    "name1",
    "name2"
  ],
  "%%surname%%": [
     "surname1",
     "surname2"
  ]
}

for tag in substitutions
  email.addSubstitution(tag, substitutions[tag])

email.setFilters({
  "templates": {
    "settings": {
      "enable": "1",
       "template_id": "XXXXXX-XXX-XXXX-XXXX-XXXXXXXXXX"
   }
 }
})


sendgrid.send email, (err, json) ->
  if err
    return console.log(err)
  console.log json
return

コードを実行すると、電子メールアドレスに電子メールが送信されます。しかし、メッセージは次のとおりです。

こんにちは!!

%%name%% %%surname%% からメッセージが送信されます。

代用は効きません。%,- と # を %% に変更してみます。しかし、それらはどれもうまくいくようです。また、setSections を使用してみます。

アップデート

これは私が送信している sendgrid オブジェクトです。

{ to: [ 'example1@example.com', 'example2@example.com' ],
  from: 'noreply@example.co',
  smtpapi: 
   { version: '1.2.0',
     header: 
      { to: [],
        sub: {},
        unique_args: {},
        category: [Object],
        section: {},
        filters: [Object],
        send_at: '',
        send_each_at: [],
        asm_group_id: {},
        ip_pool: '' } },
  subject: 'This Is The Subject',
  text: 'Hello!\n\nThis is a test message from SendGrid. We have sent this to you because you requested a test message be sent from your account.\n\n This is a link to google.com: http://www.google.com\n This is a link to apple.com: http://www.apple.com\n This is a link to sendgrid.com: http://www.sendgrid.com\n\n Thank you for reading this test message.\n\nLove,\nYour friends at SendGrid',
  html: '<table style="font-family: verdana, tahoma, sans-serif; color: #000;"> <tr> <td> <h2>Hello,</h2> <p>Hello!!</p> <p>%%name%% %%surname%% send you a message</p> </table>',
  bcc: [],
  cc: [],
  replyto: '',
  date: '',
  headers: {},
  toname: undefined,
  fromname: undefined,
  files: [] }

私は何を間違っていますか?

前もって感謝します。

4

1 に答える 1

0

すでに問題が見つかったので、私は自分の質問に答えます。

この問題は Sendgrid ではなく、coffeeScript に関連していました。私の声明の1つで、私はこれを使用しています:

for tag in substitutions
  email.addSubstitution(tag, substitutions[tag])

ここでは、電子メール オブジェクトに代用タグを追加しようとしています。しかし、コードをデバッグすると、ループが置換変数を反復していないことがわかりました。そのため、任意のタグが電子メール オブジェクトに追加されました。

このコードの前のコードを変更しました。

Object.keys(substitutions).forEach((tag)->
  email.addSubstitution(tag, sub[tag])
  return

この変更により、置換タグが電子メール オブジェクトに追加されました。

于 2016-04-13T12:00:15.670 に答える