7
2

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 3 years have passed since last update.

herokuとsendgridを使ってメール機能があるアプリを作りました。
環境変数を使い、メールの送信先をしましたが、メールを送信することができませんでした。

heroku logs -t をしたところ、

heroku ArgumentError (SMTP To address may not be blank: [] 

このようなログがありました。
address が blankになっていました。
環境変数を指定するファイル( .env )を .gignoreに入れていたため、
heroku上では環境変数の中身がないため、
メールを送信することができませんでした。

送信するためには、
Heroku上の環境変数をセットします。heroku config:setコマンドを使用することで、Heokuの環境変数を設定することができます。
(例)

heroku config:set ADDRESS=aaa@aaa.com

上記のようにすることで、環境変数を設定する事ができ、
結果的にメールの送受信をする事ができました。

7
2
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
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?