Guest User

Untitled

a guest
Apr 9th, 2018
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $KCODE = 'UTF-8'
  2. require 'time'
  3.  
  4. ### 初期設定ここから
  5. # mixi設定
  6. USERNAME = 'xxxxxxxx@xxxxxx.com'
  7. PASSWORD = 'xxxxxxxx'
  8. # Gmail設定
  9. MAIL_ADDRESS = "xxxxxxxx@gmail.com"
  10. MAIL_PASS = "xxxxxxxx"
  11. TO_ADDRESS = MAIL_ADDRESS
  12. ### 初期設定ここまで
  13.  
  14. require 'mixi'
  15. require 'gmail'
  16.  
  17. # mixiから取得した最近の日記記事のうち新しくて外部のブログを使っていないものについて
  18. Mixi.new(USERNAME, PASSWORD).get_new_internal_diaries.each do |recent_diary|
  19. # Gmailで送信する
  20. Gmail.new(MAIL_ADDRESS, MAIL_PASS).send(TO_ADDRESS, recent_diary[:title], recent_diary[:text])
  21. end
Add Comment
Please, Sign In to add comment