Login   Register  
PHP Classes
elePHPant
Icontem

File: test.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Emilio Rodriguez  >  OE generator  >  test.php  >  Download  
File: test.php
Role: Example script
Content type: text/plain
Description: Test example
Class: OE generator
Generate Outlook Express configuration files
Author: By
Last change:
Date: 2006-02-14 23:38
Size: 697 bytes
 

Contents

Class file image Download
<?php
////////////////////////////////////////////////////
// OE_Generator - Outlook Express configuration generator Tester
//
// Autor:  Emilio Rodriguez - emiliort@gmail.com
//
// License: public domain
////////////////////////////////////////////////////

include ('OE_Generator.class.php');
$OE_Generator  = new OE_Generator;

     
/**
     * Generate this configuration via windows registry file (creating a .reg file)  
     * @param string $POP_server
     * @param string $SMTP_server
     * @param string $email
     * @param string $user
     * @return void
     */
$OE_Generator->generate('pop3.domain.com','smtp.domain.com','test@domain.com','test.domain.com');
?>