たとえば、 Ruby でこんなコードを書いてメールを送信したいとする。 require 'mail' options = { address: 'smtp.gmail.com', port: 587, domain: 'gmail.com', user_name: USER_NAME, password: PASSWORD, authentication: 'plain', enable_starttls_auto: true } Mail.defaults do delivery_method :smtp, options end mail = Mail.new do to 'karuran.f@gmail.com' from 'karuran@gmail.com' subject 'test ' html_part do content_type 'text/html; charset