Changeset 460


Ignore:
Timestamp:
Feb 4, 2014 6:26:57 AM (10 years ago)
Author:
anonymous
Message:

Edit comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Email.inc.php

    r454 r460  
    2121 */
    2222
    23 /**
    24  * Email.inc.php
    25  *
    26  * Easy email template usage.
    27  *
    28  * @author  Quinn Comendant <quinn@strangecode.com>
    29  * @version 1.0
    30  *
    31 
    32 // Example.
     23/*
     24* Email.inc.php
     25*
     26* Easy email template usage.
     27*
     28* @author  Quinn Comendant <quinn@strangecode.com>
     29* @version 1.0
     30*
     31* Example of use:
     32---------------------------------------------------------------------
     33// Setup email object.
    3334$email = new Email(array(
    3435    'to' => array($frm['email'], 'q@lovemachine.local'),
     
    4950    $app->logMsg(sprintf('Error sending confirmation email to address %s', $frm['email']), LOG_NOTICE, __FILE__, __LINE__);
    5051}
    51 
    52  *
    53  */
     52---------------------------------------------------------------------
     53*/
     54
    5455class Email {
    5556
Note: See TracChangeset for help on using the changeset viewer.