Mail_Queue
[ class tree: Mail_Queue ] [ index: Mail_Queue ] [ all elements ]

Source for file base.php

Documentation is available at base.php

  1. <?php
  2.  
  3. require_once "Mail/Queue.php";
  4.  
  5. $db_options['type']       'db';
  6. $db_options['dsn']        'mysql://user:password@host/database';
  7. $db_options['mail_table''mail_queue';
  8.  
  9. $mail_options['driver']   'smtp';
  10. $mail_options['host']     'your_server_smtp.com';
  11. $mail_options['port']     = 25;
  12. $mail_options['auth']     = false;
  13. $mail_options['username''';
  14. $mail_options['password''';
  15.  
  16. ?>

Documentation generated on Mon, 11 Mar 2019 15:44:08 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.