Skip to content

Commit

Permalink
return path can be empty
Browse files Browse the repository at this point in the history
  • Loading branch information
AUDUL committed Jan 9, 2024
1 parent 6b043af commit e6ebfbf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

All notable changes to this project will be documented in this file.

## [2.0.5]

- return path can be empty

## [2.0.4]

- fix unregister template
Expand Down
2 changes: 1 addition & 1 deletion bundle/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function getConfigTreeBuilder(): TreeBuilder
->scalarNode('email_subject_prefix')->isRequired()->cannotBeEmpty()->end()
->scalarNode('email_from_address')->isRequired()->cannotBeEmpty()->end()
->scalarNode('email_from_name')->isRequired()->cannotBeEmpty()->end()
->scalarNode('email_return_path')->isRequired()->cannotBeEmpty()->end()
->scalarNode('email_return_path')->isRequired()->end()
->scalarNode('simple_mailer')->isRequired()->cannotBeEmpty()->end()
->scalarNode('mailing_mailer')->isRequired()->cannotBeEmpty()->end()
->scalarNode('default_mailinglist_id')->isRequired()->cannotBeEmpty()->end()
Expand Down

0 comments on commit e6ebfbf

Please sign in to comment.