当使用Django应用程序(Debian服务器)切换到uWSGI时,由于某些未知原因,从Django发送电子邮件不再能够到达收件人。
我的uWSGI配置是:
echo "This is my email text." | mail -s "This is the subject" my@email.com
我可以在使用命令时发送电子邮件:
class CreateMyModel < ActiveRecord::Migration
def change
create_table :my_model do |t|
t.references :place, index: true
t.time :time_first
t.time :time_second
t.timestamps
end
end
end
我在这里错过了什么吗?