* feat: create a from_email_address and a reply_to_email_address * feat: update other mailers with the new SMTP email settings * test: update all spec files * fix: use the SMTP::Settings value * fix tests * spec: fix the comma * feat: tighten some logic * fix: test * fix tests * fix tests * final fix test commit * fix test * fix test * oops * feat: add a reply_to for Devise Mailer * chore: update the description * use a proc for reply_to * feat: update text * Update spec/mailers/digest_mailer_spec.rb Co-authored-by: Julianna Tetreault <32834804+juliannatetreault@users.noreply.github.com> * Update spec/mailers/verification_mailer_spec.rb Co-authored-by: Julianna Tetreault <32834804+juliannatetreault@users.noreply.github.com> * Update spec/mailers/shared_examples/renders_proper_email_headers.rb Co-authored-by: Julianna Tetreault <32834804+juliannatetreault@users.noreply.github.com> * refactor: move OPTIONS to a helper as its only being used in the view layer Co-authored-by: Julianna Tetreault <32834804+juliannatetreault@users.noreply.github.com>
20 lines
822 B
Ruby
20 lines
822 B
Ruby
RSpec.shared_examples "#renders_proper_email_headers" do
|
|
let(:from_email_address) { "custom_noreply@forem.com" }
|
|
let(:reply_to_email_address) { "custom_reply@forem.com" }
|
|
|
|
before do
|
|
allow(Settings::SMTP).to receive(:provided_minimum_settings?).and_return(true)
|
|
allow(Settings::SMTP).to receive(:from_email_address).and_return(from_email_address)
|
|
allow(Settings::SMTP).to receive(:reply_to_email_address).and_return(reply_to_email_address)
|
|
end
|
|
|
|
it "renders proper sender", :aggregate_failures do
|
|
expect(email.from).to eq([from_email_address])
|
|
expected_from = "#{Settings::Community.community_name} <#{from_email_address}>"
|
|
expect(email["from"].value).to eq(expected_from)
|
|
end
|
|
|
|
it "renders proper reply_to" do
|
|
expect(email["reply_to"].value).to eq(reply_to_email_address)
|
|
end
|
|
end
|