Skip to content
Snippets Groups Projects
MailModel.php 400 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    
    
    /**
     * Copyright Maarch since 2008 under licence GPLv3.
     * See LICENCE.txt file at the root folder for more details.
     * This file is part of Maarch software.
     *
     */
    
    /**
     * @brief mail Model
     * @author dev@maarch.org
     * @ingroup sendmail
     */
    
    require_once __DIR__. DIRECTORY_SEPARATOR .'MailModelAbstract.php';
    
    class MailModel extends MailModelAbstract
    {
        // Do your stuff in this class
    }