Back

使用163企业邮箱时,配置thunder bird ( configure your ym.163.com email ), 以及拿来就用的rails smtp配置

发布时间: 2015-01-19 06:25:00

refer to:  http://zhidao.baidu.com/link?url=hWaOxKtwjpxzDAKM0-V1pYKxoq3L8yWdNgy_Ds9Ap1VtnFlyMzU2ta6ULf4qySMIolMfUBHY26hfJCTP_-Bfvq

使用pop3:  pop.ym.163.com

使用smtp:  smtp.ym.163.com  

就可以了! 见下图:

Screenshot From 2015 01 19 14:25:08

另外,拿来就用的rails 邮件配置:(下面代码取自于redmine ,不过其中的 delivery_method, smtp_settings 都特别典型)

default:
  email_delivery:
      delivery_method: :smtp
      smtp_settings:
        address: "smtp.ym.163.com"
        port: 25
        authentication: :plain
        domain: 'example.com'
        user_name: '[email protected]'
        password: 'your password'

Back