blob: 9d87f1f2f5d24e7b17c38cdee5b3ff5abcaee88c (
plain)
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
|
<?php
// src/model/entities/Email.php
declare(strict_types=1);
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity]
#[ORM\Table(name: TABLE_PREFIX . "email")]
class Email
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: "integer")]
private int $id_log;
#[ORM\Column(type: "string", length: 320)]
private string $sender;
#[ORM\Column(type: "string", length: 320)]
private string $recipient;
// inutile, objet = 'Message envoyé par ' . $name . ' (' . $email . ') depuis le site web'
/*#[ORM\Column(type: "text")]
private string $subject;*/
#[ORM\Column(type: "text")]
private string $content;
#[ORM\Column(type: 'datetime', options: ['default' => 'CURRENT_TIMESTAMP'])]
private ?\DateTime $date_time ;
public function __construct(string $sender, string $recipient, string $content){
$this->sender = strtolower($sender);
$this->recipient = strtolower($recipient);
$this->content = $content;
$this->date_time = new \DateTime();
}
}
|