You need to join this project to post message / question. See Help for details.
Sử dụng gmail để gửi thông báo
site5 support is limited
Ref: #469
Do site5 giới hạn lượng email gửi ra trong một giờ, ta sẽ tìm cách gửi email bằng smtp
Hướng dẫn gốc: http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/
$ ruby script/plugin install git://github.com/collectiveidea/action_mailer_optional_tls.git
# file = config/email.yml
production:
delivery_method: :smtp
smtp_settings:
tls: true
address: "smtp.gmail.com"
port: '587'
domain: "smtp.gmail.com"
authentication: :plain
user_name: "your_email@gmail.com"
password: "foobar@yahoo.com"
Tuy nhiên, cách này vẫn có nhiều cái không an toàn. Ví dụ, có thể dẫn tới việc mất tải khỏan ở gmail.com :(
Comments