Skip to content

Commit

Permalink
Merge branch 'test' into prod
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickakk committed Aug 2, 2023
2 parents 85c3f8b + c12bf46 commit ed57edc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 9 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
# Release notes

## Version 2023-08/2
*Release date: 2023-08-02*

### Bug fix
- Added Sender and ReturnPath to course reminder mails #69


## Version 2023-08
*Release date: 2023-08-01*

### New features
### New feature
- Implemented sitemap for all public shown courses and static links #55

### Changes
### Change
- Migrated application to PHP 8.2 #65

### Small changes
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023-08
2023-08/2
2 changes: 2 additions & 0 deletions src/Command/CourseRemindersCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ public function execute(Arguments $args, ConsoleIo $io)
$mailer->setCc($cc);
}
$mailer->setFrom(env('APP_MAIL_DEFAULT_FROM'))
->setSender(env('APP_MAIL_DEFAULT_FROM'))
->setReturnPath(env('APP_MAIL_DEFAULT_FROM'))
->setTo($to)
->setReplyTo([env('APP_MAIL_DEFAULT_REPLY_TO') => 'DH Course Registry'])
->setSubject($subject)
Expand Down

0 comments on commit ed57edc

Please sign in to comment.