-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove mailers #2850
Open
thomasleese
wants to merge
3
commits into
main
Choose a base branch
from
remove-action-mailer
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Remove mailers #2850
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 15, 2025 10:18
2e7fed5
to
0215b1c
Compare
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 15, 2025 10:23
0215b1c
to
463fde3
Compare
thomasleese
force-pushed
the
mail-delivery-job
branch
from
January 15, 2025 10:49
aaa7bae
to
aa9c4c1
Compare
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 15, 2025 10:49
463fde3
to
59b5677
Compare
tvararu
approved these changes
Jan 15, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✂️
thomasleese
force-pushed
the
mail-delivery-job
branch
from
January 16, 2025 08:34
aa9c4c1
to
835e159
Compare
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 16, 2025 08:34
59b5677
to
68917ad
Compare
thomasleese
force-pushed
the
mail-delivery-job
branch
from
January 17, 2025 16:33
835e159
to
d316af4
Compare
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 17, 2025 16:34
68917ad
to
e8250aa
Compare
thomasleese
force-pushed
the
mail-delivery-job
branch
2 times, most recently
from
January 21, 2025 17:29
c40ef62
to
05bd1a7
Compare
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 21, 2025 17:49
e8250aa
to
ad6fa17
Compare
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 21, 2025 18:20
ad6fa17
to
b184def
Compare
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 22, 2025 10:50
b184def
to
89b5e24
Compare
This removes the unused mailer classses now that we're sending emails using the GOV.UK Notify API directly.
This Gem is no longer being used so we can safely remove it.
We're no longer using `ActionMailer` to send emails so we can safely remove code that references it.
thomasleese
force-pushed
the
remove-action-mailer
branch
from
January 22, 2025 14:28
89b5e24
to
ac744b9
Compare
Quality Gate passedIssues Measures |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This removes various references to
ActionMailer
and the mailer classes since they are no longer being used as we're sending emails using the GOV.UK Notify API directly now (#2841).We can't remove the
ApplicationMailer
and stop requiringaction_mailer/railtie
until heartcombo/devise#5731 has been released.