我已经设置了 rails 应用程序来接收邮件并从中创建书签。因此,我包括了 gem 'mailgun'。因为它不能正常工作,但是我想使用 runscope 来更好地了解发送了哪些数据。
我在我的应用程序中完成了以下步骤: 1. 将 mailgun 添加到 heroku 2. 设置初始化程序
ActionMailer::Base.smtp_settings = {
port: 587,
address: 'smtp.mailgun.org',
user_name: ENV['MAILGUN_SMTP_LOGIN'],
password: ENV['MAILGUN_SMTP_PASSWORD'],
domain: 'appurlhere.com',
authentication: :plain,
content_type: 'text/html'
}
ActionMailer::Base.delivery_method = :smtp
# Makes debugging *way* easier.
ActionMailer::Base.raise_delivery_errors = true
设置传入路由
发布:incoming,to:'incoming#create'
创建传入控制器
def create @user = User.find_by_email(params[:sender]) @topic = @user.topics.find_by(title: params[:subject]) @url = "http://#{params["body-plain"]}" @user = User.create(email: params[:sender], password: "#{params[:subject]}") if @user.nil? @topic = Topic.create(title: params[:subject], user_id: @user.id) if @topic.nil? @bookmark = Bookmark.create(topic_id: @topic, user_id: @user, url: "what should be here") head 200 end
但是现在我不知道应该在哪里调整代码,以便更好地查看更好的数据(和调试)。我尝试在 mailgun 中向我的路由添加代码,但这没有用。