Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
namespace App\Service\Send;
use App\Messenger\Message\SendMessage;
use Symfony\Component\Messenger\MessageBusInterface;
use Throwable;
class SendService
{
public ?string $from = null;
public ?string $to = null;
public ?string $subject = null;
public ?string $body = null;
public function __construct(
private string $confirmType,
private string $fromEmail,
private readonly MessageBusInterface $bus
)
{
}
public function getFrom(): ?string
{
return $this->from;
}
public function setFrom(?string $from): self
{
$this->from = $from;
return $this;
}
public function getTo(): ?string
{
return $this->to;
}
public function setTo(?string $to): self
{
$this->to = $to;
return $this;
}
public function getSubject(): ?string
{
return $this->subject;
}
public function setSubject(?string $subject): self
{
$this->subject = $subject;
return $this;
}
public function getBody(): ?string
{
return $this->body;
}
public function setBody(?string $body): self
{
$this->body = $body;
return $this;
}
public function send(): void
{
try {
$this->bus->dispatch(new SendMessage(
$this->from ?: $this->fromEmail,
$this->to,
$this->subject,
$this->body,
$this->confirmType
));
} catch (Throwable $e) {
}
}
}