Add email delivery for testing purposes

In order to demonstrate mailhog integration into codeception.
Also refactor logic into signal / slot to not bloat controller.
This commit is contained in:
Daniel Siepmann 2019-08-27 08:57:54 +02:00
parent 0f56c2a93b
commit e88fcf02b1
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
3 changed files with 70 additions and 7 deletions

View file

@ -55,13 +55,11 @@ class AddressController extends ActionController
{
$this->addressRepository->update($address);
$this->addFlashMessage(
LocalizationUtility::translate('flashSuccess', 'ExampleExtension', [
'companyName' => $address->getCompanyName(),
'street' => $address->getStreet(),
]),
'Update successfully'
);
$this->signalSlotDispatcher->dispatch(__CLASS__, 'addressUpdated', [
$address,
$this,
]);
$this->redirect('index');
}
}

View file

@ -0,0 +1,58 @@
<?php
namespace Workshop\ExampleExtension\Domain\Event;
/*
* Copyright (C) 2019 Daniel Siepmann <coding@daniel-siepmann.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
use TYPO3\CMS\Core\Mail\MailMessage;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Utility\LocalizationUtility;
use Workshop\ExampleExtension\Controller\AddressController;
use Workshop\ExampleExtension\Domain\Model\Address as AddressModel;
class Address
{
public function updated(AddressModel $address, AddressController $controller)
{
$this->sendUpdateEMail($address);
$this->addUpdateFlashMessage($address, $controller);
}
private function sendUpdateEmail(AddressModel $address)
{
$mail = GeneralUtility::makeInstance(MailMessage::class);
$mail->setSubject('Address ' . $address->getCompanyName() . ' was updated');
$mail->setTo(array('coding@daniel-siepmann.de'));
$mail->setBody('The address ' . $address->getCompanyName() . ' was successfully updated.');
$mail->send();
}
private function addUpdateFlashMessage(AddressModel $address, AddressController $controller)
{
$controller->addFlashMessage(
LocalizationUtility::translate('flashSuccess', 'ExampleExtension', [
'companyName' => $address->getCompanyName(),
'street' => $address->getStreet(),
]),
'Update successfully'
);
}
}

View file

@ -41,4 +41,11 @@
}
}
');
\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Extbase\SignalSlot\Dispatcher::class)->connect(
\Workshop\ExampleExtension\Controller\AddressController::class,
'addressUpdated',
\Workshop\ExampleExtension\Domain\Event\Address::class,
'updated'
);
})();