Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/mailers/cancel_membership_mailer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def cancel(user)
to: [MEMBERSHIP_EMAIL],
cc: [user.email],
subject: "#{user.name} is canceling their membership.",
body: "Please remove #{user.name} from all mailing lists."
body: "Please remove #{user.name} from DU mailing lists and Slack."
)
end
end
2 changes: 1 addition & 1 deletion spec/mailers/cancel_membership_mailer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
end

it "has the correct information" do
expect(mail.body).to eq "Please remove #{member.name} from all mailing lists."
expect(mail.body).to eq "Please remove #{member.name} from DU mailing lists and Slack."
end
end
end