私たちは現在、ユーザーがお互いの実際のメール アドレスを見なくても (ダブル ブラインド)、メールを送信できるようにしてusername@parse.example.com
います。
class ForwardsMailbox < ApplicationMailbox
before_processing :ensure_users
def process
content = mail.multipart? ? mail.parts.first.body.decoded : mail.decoded
UserMailer.with(sender: sender, recipient: recipient, subject: mail.subject, content: content).forward_email.deliver_later
end
private
def sender
@sender ||= User.find_by(email: mail.from.first)
end
def recipient
@recipient ||= User.find_by(username: mail.to.first.split('@').first)
end
def ensure_users
bounce_with UserMailer.invalid_user(inbound_email) if sender.nil? or recipient.nil?
end
end
mail
オブジェクトの内容を抽出したり、マルチパートかどうかを確認したりする代わりに、オブジェクト全体を転送することは可能ですか?