PHP Classes

File: test.php

Recommend this page to a friend!
  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: 18 years ago
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');
?>