Skip to content

Commit

Permalink
Avoid sending emails for now
Browse files Browse the repository at this point in the history
  • Loading branch information
galeaspablo committed Sep 20, 2024
1 parent e2962e6 commit 645e6da
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,13 @@ public function react(Event $event): void
$fromEmailAddress = "system.development-application.example.com";
$subjectLine = "Your Verification Code";
$emailContents = "This is your verification code: https://example.com/page/?verificationCode=" . $verificationCode;
$this->emailer->send(
$sendToEmailAddress,
$subjectLine,
$emailContents,
$fromEmailAddress
);
// We're not sending emails for now
// $this->emailer->send(
// $sendToEmailAddress,
// $subjectLine,
// $emailContents,
// $fromEmailAddress
// );

$aggregateAndEventIds = $this->eventStore->find($existingReaction->aggregateId()->id());
if (null === $aggregateAndEventIds) {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/templates/pgt-proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ambarltd/pgt-proxy:v1.0.2
FROM ambarltd/pgt-proxy:v1.1


COPY trust_this_ca.pem /etc/pgt_proxy/client_tls/custom_cas/
Expand Down

0 comments on commit 645e6da

Please sign in to comment.