Skip to content

Commit

Permalink
Send mail by using the configured email address
Browse files Browse the repository at this point in the history
  • Loading branch information
jissereitsma committed Oct 2, 2024
1 parent ef35ec6 commit 6d1afb1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.10] - 2 October 2024
### Fixed
- Send mail by using the configured email address

## [1.2.9] - 9 April 2024
### Fixed
- Fix calling Rate class in the Add action #2 @se-viacheslav
Expand Down
2 changes: 1 addition & 1 deletion Cron/CheckRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function execute(): bool
private function sendMail(string $contents)
{
$name = $this->scopeConfig->getValue('trans_email/ident_support/name');
$email = $this->scopeConfig->getValue('trans_email/ident_support/email');
$email = $this->config->email();

$templateParams = [];
$templateParams['output'] = $contents;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "yireo/magento2-taxratesmanager2",
"license": "OSL-3.0",
"type": "magento2-module",
"version": "1.2.9",
"version": "1.2.10",
"homepage": "https://www.yireo.com/software/magento-extensions/taxratesmanager2",
"description": "Manage EU VAT rates automatically",
"keywords": [
Expand Down

0 comments on commit 6d1afb1

Please sign in to comment.