Skip to content

Commit d0e48d7

Browse files
chore(sentryapps): update email address (#91745)
Sentry app requests goes to partners@sentry.io today but the word partners is very loaded. For example for provisioning requests we're also thinking partners 🤷‍♀️ Renaming it to integrations-platform@sentry.io
1 parent e5f5ee0 commit d0e48d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/sentry/sentry_apps/api/endpoints/sentry_app_publish_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def post(self, request: Request, sentry_app) -> Response:
117117
)
118118

119119
# Must send to user & partners so that the reply-to email will be each other
120-
recipients = ["partners@sentry.io", request.user.email]
120+
recipients = ["integrations-platform@sentry.io", request.user.email]
121121
sent_messages = new_message.send(
122122
to=recipients,
123123
)

tests/sentry/sentry_apps/api/endpoints/test_sentry_app_publish_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_publish_request(self, send):
4545
},
4646
)
4747
assert response.status_code == 201
48-
send.assert_called_with(to=["partners@sentry.io", self.user.email])
48+
send.assert_called_with(to=["integrations-platform@sentry.io", self.user.email])
4949

5050
@mock.patch("sentry.utils.email.message_builder.MessageBuilder.send")
5151
def test_publish_request_email_fails(self, send):
@@ -66,7 +66,7 @@ def test_publish_request_email_fails(self, send):
6666
assert response.data == {
6767
"detail": "Something went wrong trying to send publish confirmation email"
6868
}
69-
send.assert_called_with(to=["partners@sentry.io", self.user.email])
69+
send.assert_called_with(to=["integrations-platform@sentry.io", self.user.email])
7070

7171
@mock.patch("sentry.utils.email.message_builder.MessageBuilder.send")
7272
def test_publish_already_published(self, send_mail):

0 commit comments

Comments
 (0)