<?php

class SentEmail extends \Eloquent
{
	protected $table = 'sent_emails';

	protected $softDelete = true;

	protected $dates = ['deleted_at'];

	protected $fillable  = array('user_id','from', 'to', 'subject', 'message');
	
}