LoginSignup
3
3

More than 5 years have passed since last update.

Gmailに添付されたAWS請求書をSlackに転送

Posted at

Gmailに送られてくるAWSの請求書をSlackに共有

毎月Gmailに送られてくるAWSの請求書をSlackに転送する

方法

泥臭くGmailの件名から抽出して、Slackに通知するようにしています

以下でこちらのソースコードをベースに説明します

  1. Tokenの取得
  2. 通知させたいGoogleユーザでログイン
  3. 新規Google App Scriptを作成
  4. プロジェクト名は任意の名前を入力
  5. コードには、Main.gsの内容を張り付け
  6. 以下の箇所を修正してください

    var apiToken = '<token>';       // https://api.slack.com/custom-integrations/legacy-tokensでtokenを発行してください
    var postChannel = "<channel>";  // 通知したいチャンネル名
    
  7. スケジュール実行の設定
    毎月3~4日に送られてくるので、5日あたりに自動実行を設定しとくと安全でしょう

リファレンス

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