11 lines
509 B
PHP
Executable File
11 lines
509 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class GmailSentHistoryModel extends Model{
|
|
protected $table = 'gmail_sent_history';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = ["id", "mail", "bcc", "cc", "message", "attachments", "client_id", "client_branch_id", "client_policy_id", "employee_policy_id", "employee_id", "mail_type", "gmail_api_status", "gmail_api_id", "created_by", "created_at", "updated_by", "updated_at", "isactive","received_message"];
|
|
} |