# MailSpy configuration # tracking_host: The hostname and port (if necessary) of the server MailSpy # will make requests to for tracking. MailSpy.configure do |config| config.tracker_host = "localhost:5000" config.aws_access_key_id = "AKIAIF6DRMAH3BR47AZQ" config.aws_secret_access_key = "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" config.aws_campaign_bucket = "daviacalendar-mailspy" end # MailSpy allows you to add multiple email service providers simply # call this method and specify the following options # # :name (must be unique for all esps you add) # :via (stmp or sendmail) # # SMTP OPTIONS # :address, # :port, # :authentication, # :user_name, # :password, # :domain, # :enable_starttls_auto MailSpy.add_email_service_provider do |esp| esp.name = "sendgrid" esp.address = "smtp.sendgrid.net" esp.port = "587" esp.domain = "herokuapp.com" esp.user_name = "app2602840@heroku.com" esp.password = "qb6qnim0" esp.authentication = :plain esp.enable_starttls_auto = true end