Добавить вложение в электронное письмо с помощью SendGrid с помощью направляющих - PullRequest
0 голосов
/ 07 мая 2018

Я создал метод hello_world, который отправляет электронное письмо с помощью Sendgrid. Я пытаюсь включить вложение. Я нашел следующую строку в другом ответе stackoverflow: mail.attachments['test.txt'] = File.read("#{Rails.root}/public/test.txt")

Это, однако, приводит к следующей ошибке:

Completed 500 Internal Server Error in 17ms (ActiveRecord: 3.4ms)



TypeError - no implicit conversion of String into Integer:
  app/controllers/messages_controller.rb:32:in `hello_world'
  app/controllers/messages_controller.rb:65:in `create'

Почтовый код в контроллере:

  def hello_world(company, message)
    from = Email.new(email: "test+#{current_user.auth_token}@example.com")
    to = Email.new(email: 'hello@pim.gg')

    subject = 'TEST from dev'
      content = Content.new(type: 'text/plain', value: "#{company.email} #{current_user} #{current_user.first_name} #{current_user.last_name} #{message.text}")

    mail = SendGrid::Mail.new(from, subject, to, content)
    mail.attachments['test.txt'] = File.read("#{Rails.root}/public/test.txt")

    sg = SendGrid::API.new(api_key: ENV['SENDGRID_API_KEY'])
    response = sg.client.mail._('send').post(request_body: mail.to_json)
    puts response.status_code
    puts response.body
    puts response.headers
  end

1 Ответ

0 голосов
/ 07 мая 2018

Согласно документации по sendgrid-ruby gem добавление-вложения должно быть таким:

attachment = SendGrid::Attachment.new
attachment.content = Base64.strict_encode64(File.open(fpath, 'rb').read)
attachment.type = 'application/vnd.openxmlformatsofficedocument.spreadsheetml.sheet'
attachment.filename = fname
attachment.disposition = 'attachment'
attachment.content_id = 'Reports Sheet'
mail.add_attachment(attachment)
...