<?php
namespace App\Model;
class Mail
{
private $fullName;
private $subject;
private $message;
private $email;
private $contact;
private $attachment;
private $template;
/**
* Get the value of subject
*/
public function getSubject()
{
return $this->subject;
}
/**
* Set the value of subject
*
* @return self
*/
public function setSubject($subject)
{
$this->subject = $subject;
return $this;
}
/**
* Get the value of message
*/
public function getMessage()
{
return $this->message;
}
/**
* Set the value of message
*
* @return self
*/
public function setMessage($message)
{
$this->message = $message;
return $this;
}
/**
* Get the value of email
*/
public function getEmail()
{
return $this->email;
}
/**
* Set the value of email
*
* @return self
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* Get the value of contact
*/
public function getContact()
{
return $this->contact;
}
/**
* Set the value of contact
*
* @return self
*/
public function setContact($contact)
{
$this->contact = $contact;
return $this;
}
/**
* Get the value of fullName
*/
public function getFullName()
{
return $this->fullName;
}
/**
* Set the value of fullName
*
* @return self
*/
public function setFullName($fullName)
{
$this->fullName = $fullName;
return $this;
}
public function setAttachment($file)
{
$this->attachment = $file;
}
public function getAttachment()
{
return $this->attachment;
}
/**
* Get the value of template
*/
public function getTemplate()
{
return $this->template;
}
/**
* Set the value of template
*
* @return self
*/
public function setTemplate($template)
{
$this->template = $template;
return $this;
}
}