Skip to content

Commit 5694ab3

Browse files
committed
Merge branch 'master' of github.com:yireo/Yireo_TaxRatesManager2
2 parents ec4ca16 + 2ad147b commit 5694ab3

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
## [1.2.10] - 24 October 2024
9+
## [1.2.11] - 24 October 2024
1010
### Fixed
1111
- Add funding
1212

13+
## [1.2.10] - 2 October 2024
14+
### Fixed
15+
- Send mail by using the configured email address
16+
1317
## [1.2.9] - 9 April 2024
1418
### Fixed
1519
- Fix calling Rate class in the Add action #2 @se-viacheslav

Cron/CheckRunner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public function execute(): bool
126126
private function sendMail(string $contents)
127127
{
128128
$name = $this->scopeConfig->getValue('trans_email/ident_support/name');
129-
$email = $this->scopeConfig->getValue('trans_email/ident_support/email');
129+
$email = $this->config->email();
130130

131131
$templateParams = [];
132132
$templateParams['output'] = $contents;

Observer/Backend/Controller/ActionPredispatch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function execute(
5959
return $this;
6060
}
6161

62-
$controllerName = $this->request->getControllerName(); // @phpstan-ignore-line
62+
$controllerName = $this->request->getControllerName();
6363
if ($controllerName !== 'rate') {
6464
return $this;
6565
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "yireo/magento2-taxratesmanager2",
33
"license": "OSL-3.0",
44
"type": "magento2-module",
5-
"version": "1.2.10",
5+
"version": "1.2.11",
66
"homepage": "https://www.yireo.com/software/magento-extensions/taxratesmanager2",
77
"description": "Manage EU VAT rates automatically",
88
"keywords": [

0 commit comments

Comments
 (0)