WIP: Add email notifications

This commit is contained in:
Björn Fromme
2023-10-25 14:33:56 +02:00
parent eb53e2a843
commit abbceae2c8
11 changed files with 1863 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
namespace App\Model;
class EmailAttachmentDto
{
public function __construct(private string $name, private string $content, private string $mimeType)
{
}
public function getName(): string
{
return $this->name;
}
public function getContent(): string
{
return $this->content;
}
public function getMimeType(): string
{
return $this->mimeType;
}
}