6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

aws-sdk-rubyを使ってSESでメール送信する

Last updated at Posted at 2014-10-03

参考: http://akasata.com/articles/293

ここを参考にしてみたんですが、NKF使ってutf8に変換してるのに、 ISO-2022-JP指定していたりして、謎だったので、素直に何もせずに送信してみたらうまく動いたので残す。
→よく見たら -wじゃなくて -jwですね。ソース見たらISO-2022-JPになってるようなのでウソでした。すみません。

あと、SESはregionが限られてるので、SESだけ別regionはどうすんの?って思って調べたら AWS.configであっさりと動いたのでここも改善。かなりシンプルになりました。

もちろん受信したメールのソースも見ましたが、タイトルもMIMEエンコードされてるし、utf8指定されてるので、大丈夫そうでした。

蛇足:まさか今さらISO-2022-JP対応必須とか無いとは思いますが、必要ならリンク元のNKFのところをちゃんとiso-2022-jp変換にしてあげれば良いのでは無いかと。

AWS.config(
  access_key_id: 'ACCESS_KEY_ID',
  secret_access_key: 'SECRET_ACCESS_KEY',
  region: 'ap-northeast-1',
  ses: { region: 'us-west-2' }
)

ses = AWS::SimpleEmailService.new

body_text = <<-EOS
こんにちは。
このメールはテストメールです。

おしまい
EOS

subject = 'サブジェクトです'

from_email = "test@from.com"
to_email = "test@to.com"

ses.send_email(
  :subject => subject,
  :to => to_email,
  :from => from_email,
  :body_text => body_text,
)

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?