-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\StaticResolverBundle\Lib\Helper; | ||
|
||
use Exception; | ||
use Pimcore\Helper\Mail as MailHelper; | ||
use Pimcore\Mail; | ||
use Pimcore\Model\Document; | ||
|
||
final class MailResolver implements MailResolverInterface | ||
{ | ||
/** | ||
* @throws Exception | ||
*/ | ||
public function getDebugInformation(string $type, Mail $mail): string | ||
{ | ||
return MailHelper::getDebugInformation($type, $mail); | ||
} | ||
|
||
public function getDebugInformationCssStyle(): string | ||
{ | ||
return MailHelper::getDebugInformationCssStyle(); | ||
} | ||
|
||
public static function formatDebugReceivers(array $receivers): string | ||
{ | ||
return MailHelper::formatDebugReceivers($receivers); | ||
} | ||
|
||
/** | ||
* @throws Exception | ||
*/ | ||
public function setAbsolutePaths(string $string, ?Document $document = null, string $hostUrl = null): string | ||
{ | ||
return MailHelper::setAbsolutePaths($string, $document, $hostUrl); | ||
} | ||
|
||
/** | ||
* @throws Exception | ||
*/ | ||
public static function embedAndModifyCss(string $string, ?Document $document = null): string | ||
{ | ||
return MailHelper::embedAndModifyCss($string, $document); | ||
} | ||
|
||
public static function parseEmailAddressField(?string $emailString): array | ||
{ | ||
return MailHelper::parseEmailAddressField($emailString); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\StaticResolverBundle\Lib\Helper; | ||
|
||
|
||
use Exception; | ||
use Pimcore\Mail; | ||
use Pimcore\Model\Document; | ||
|
||
interface MailResolverInterface | ||
{ | ||
/** | ||
* @throws Exception | ||
*/ | ||
public function getDebugInformation(string $type, Mail $mail): string; | ||
|
||
public function getDebugInformationCssStyle(): string; | ||
|
||
public static function formatDebugReceivers(array $receivers): string; | ||
|
||
/** | ||
* @throws Exception | ||
*/ | ||
public function setAbsolutePaths(string $string, ?Document $document = null, string $hostUrl = null): string; | ||
|
||
/** | ||
* @throws Exception | ||
*/ | ||
public static function embedAndModifyCss(string $string, ?Document $document = null): string; | ||
|
||
public static function parseEmailAddressField(?string $emailString): array; | ||
} |