<module> 
    <name>Email <small>(ver. 2.0+)</small></name> 
    <description>Sending email message class.</description> 
    <example> 
        <init>$email = module('email');</init> 
        <return>$email will return object of this simple email class..</return> 
        <code> 
            <pre> 
<?php 
                 
    $email = module('email'); 
 
    $email->from_name='John Smith'; 
    $email->from_email='[email protected]'; 
    $email->message='<p>Hey...,</p><p>This is an test message!</p>Best Regards,<br>John Smith</p>'; 
 
    $email->send('[email protected]');  
                 
?> 
            </pre> 
        </code> 
    </example> 
</module> 
<author> 
    <name>Mihajlo Siljanoski</name> 
    <web>https://mk.linkedin.com/in/msiljanoski</web> 
</author>
 
 |