Skip to content

Commit

Permalink
[#13103] Account request form: No need to CC the email 'Acknowledgeme…
Browse files Browse the repository at this point in the history
…nt of Instructor Account Request' (#13116)
  • Loading branch information
Ashwinn11 authored Jun 12, 2024
1 parent ec1f276 commit 6114677
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,6 @@ public EmailWrapper generateNewAccountRequestAcknowledgementEmail(AccountRequest
EmailTemplates.INSTRUCTOR_NEW_ACCOUNT_REQUEST_ACKNOWLEDGEMENT, templateKeyValuePairs);
EmailWrapper email = getEmptyEmailAddressedToEmail(emailAddress);
email.setType(EmailType.NEW_ACCOUNT_REQUEST_ACKNOWLEDGEMENT);
email.setBcc(Config.SUPPORT_EMAIL);
email.setSubjectFromType();
email.setContent(content);
return email;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ void testGenerateNewAccountRequestAcknowledgementEmail_withComments_generatesSuc
EmailWrapper email = sqlEmailGenerator.generateNewAccountRequestAcknowledgementEmail(accountRequest);
verifyEmail(email, "[email protected]", EmailType.NEW_ACCOUNT_REQUEST_ACKNOWLEDGEMENT,
"TEAMMATES: Acknowledgement of Instructor Account Request",
Config.SUPPORT_EMAIL,
"/instructorNewAccountRequestAcknowledgementEmailWithComments.html");
}

Expand All @@ -58,7 +57,6 @@ void testGenerateNewAccountRequestAcknowledgementEmail_withNoComments_generatesS
EmailWrapper email = sqlEmailGenerator.generateNewAccountRequestAcknowledgementEmail(accountRequest);
verifyEmail(email, "[email protected]", EmailType.NEW_ACCOUNT_REQUEST_ACKNOWLEDGEMENT,
"TEAMMATES: Acknowledgement of Instructor Account Request",
Config.SUPPORT_EMAIL,
"/instructorNewAccountRequestAcknowledgementEmailWithNoComments.html");
}

Expand Down

0 comments on commit 6114677

Please sign in to comment.