You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace core\services;
|
|
|
|
|
|
|
|
use core\forms\ContactForm;
|
|
|
|
use RuntimeException;
|
|
|
|
use yii\mail\MailerInterface;
|
|
|
|
|
|
|
|
class ContactService
|
|
|
|
{
|
|
|
|
private string $adminEmail;
|
|
|
|
private MailerInterface $mailer;
|
|
|
|
|
|
|
|
public function __construct($adminEmail, MailerInterface $mailer)
|
|
|
|
{
|
|
|
|
$this->adminEmail = $adminEmail;
|
|
|
|
$this->mailer = $mailer;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function send(ContactForm $form): void
|
|
|
|
{
|
|
|
|
$sent = $this->mailer->compose()
|
|
|
|
->setTo($this->adminEmail)
|
|
|
|
->setSubject($form->subject)
|
|
|
|
->setTextBody($form->body)
|
|
|
|
->send();
|
|
|
|
|
|
|
|
if (!$sent) {
|
|
|
|
throw new RuntimeException('Sending error.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|