0
次のように私は電子メールを送信されています:はSendgridはX-SMTPAPIヘッダで作業していないと、複数のメールを送る
def send
ActionMailer::Base.mail(content_type: "text/html", from: "\"name\" <[email protected]>", to: "[email protected]", subject: "subject", body: "<h1>Hi</h1>" , priority: 2).deliver
end
を、よく働いてきたが、今、私は1000 +処理する必要があるため、複数の電子メールを送信したいですユーザー。だから私は、私はX-SMTPAPIヘッダでこれを実現できることを読んでてきたので、私はこの
def send_all
recipients = ["[email protected]", "[email protected]"]
ActionMailer::Base.headers["X-SMTPAPI"] = { :to => recipients }.to_json
ActionMailer::Base.mail(content_type: "text/html", from: "\"name\" <[email protected]>", to: "[email protected]", subject: "subject", body: "<h1>Hi</h1>" , priority: 2).deliver
end
しかしSendgridちょうど電子メール[email protected]にではなく、ヘッダーを試してみました。これをどうすれば解決できますか?