如何从不同的应用调用我的 rails 邮件程序功能?

How can I call my rails mailer functionality from a different app?

我最近创建了一个 rails 应用程序,这样我就可以通过 SMTP 使用 ActionMailerGmail 发送电子邮件。创建新用户时,应用程序将向用户发送电子邮件。一切都很成功。

现在我想知道如何将此 "Mailer App" 用作 Web 服务? 我将如何从不同的应用程序调用我的邮件应用程序,从而消除在其他应用程序中设置所有 ActionMailer 代码但发送电子邮件的需要。

其他应用程序可以像使用姓名和电子邮件注册新用户一样简单,就像我在 Mailer 应用程序中所做的那样。

这是我的代码:

users_controller.rb

class UsersController < ApplicationController
before_action :set_user, only: [:show, :edit, :update, :destroy]

# POST /users
# POST /users.json
def create
  @user = User.new(user_params)

  respond_to do |format|
    if @user.save

      ExampleMailer.sample_email(@user).deliver

      format.html { redirect_to @user, notice: 'User was successfully     created.' }
      format.json { render :show, status: :created, location: @user }
    else
      format.html { render :new }
      format.json { render json: @user.errors, status: :unprocessable_entity }
    end
   end
end

private
  # Use callbacks to share common setup or constraints between actions.
  def set_user
    @user = User.find(params[:id])
  end

  def user_params
    params.require(:user).permit(:name, :email)
  end
end

config/env/development.rb

Rails.application.configure do
....
config.action_mailer.delivery_method = :smtp
# SMTP settings for gmail
 config.action_mailer.smtp_settings = {
 :address              => "smtp.gmail.com",
 :port                 => 587,
 :domain               => 'gmail.com',
 :user_name            => ENV['gmail_username'],
 :password             => ENV['gmail_password'],
 :authentication       => "plain",
 :enable_starttls_auto => true
}

# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
end

sample_email.html.erb

<!DOCTYPE html>
<html>
 <head>
  <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
 </head>
  <body>
   <h1>Hi <%= @user.name %></h1>
   <p>
     Sample mail sent using smtp.
   </p>
  </body>
</html>

example.mailer.rb

class ExampleMailer < ApplicationMailer
default from: "t@@@@@@@gmail.com"

def sample_email(user)
   @user = user
   mail(to: @user.email, subject: 'Sample Email')
end
end

您可能正在设想微服务架构。关于这方面的资源很多,例如 this blog post.

简而言之,当将您的功能组件移动到隔离块时,您必须为它们提供相互通信的方式。有无数种方法可以实现这一点,最流行的是 HTTP API 或使用专用消息代理。