Email Script

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Email Script

    anybody have wap email script like wap.c2.hu or mailmate.co.za plz share wit me.Thanks.

    #2
    Attach the image of your hosting panel's main page here first.

    Comment


      #3
      U mean my hosting control panel main page image bro?I not understand actually what u mean..

      Comment


        #4
        yes

        Comment


          #5
          i need a sender with SMTP access.. can som1 attach ?

          Comment


            #6
            PHP mail() and SMTP Authentication

            Part of what makes the PHP mail() function is so simple is its lack of flexibility. Most importantly and frustratingly, the stock mail() does not usually allow you to use the SMTP server of your choice, and it does not support SMTP authentication, required by many a mail server today, at all.

            Fortunately, overcoming PHP's built-in shortcomings need not be difficult, complicated or painful either. For most email uses, the free PEAR Mail package offers all the power and flexibility needed, and it authenticates with your desired outgoing mail server, too. For enhanced security, secure SSL connections are supported.
            Send Email from a PHP Script Using SMTP Authentication

            To connect to an outgoing SMTP server from a PHP script using SMTP authentication and send an email:
            Make sure the PEAR Mail package is installed. Typically, in particular with PHP 4 or later, this will have already been done for you. Just give it a try.

            Adapt the example below for your needs. Make sure you change the following variables at least: from: the email address from which you want the message to be sent.
            to: the recipient's email address and name.
            host: your outgoing SMTP server name.
            username: the SMTP user name (typically the same as the user name used to retrieve mail).
            password: the password for SMTP authentication.
            from: the email address from which you want the message to be sent.
            to: the recipient's email address and name.
            host: your outgoing SMTP server name.
            username: the SMTP user name (typically the same as the user name used to retrieve mail).
            password: the password for SMTP authentication.
            Sending Mail from PHP Using SMTP Authentication - Example

            Code:
            <?php
            require_once "Mail.php";
            
            $from = "Sandra Sender <sender@example.com>";
            $to = "Ramona Recipient <recipient@example.com>";
            $subject = "Hi!";
            $body = "Hi,\n\nHow are you?";
            
            $host = "mail.example.com";
            $username = "smtp_username";
            $password = "smtp_password";
            
            $headers = array (&#39;From&#39; => $from,
              &#39;To&#39; => $to,
              &#39;Subject&#39; => $subject);
            $smtp = Mail::factory(&#39;smtp&#39;,
              array (&#39;host&#39; => $host,
                &#39;auth&#39; => true,
                &#39;username&#39; => $username,
                &#39;password&#39; => $password));
            
            $mail = $smtp->send($to, $headers, $body);
            
            if (PEAR::isError($mail)) {
              echo("
            
            " . $mail->getMessage() . "</p>");
             } else {
              echo("
            
            Message successfully sent!</p>");
             }
            ?>
            Sending Mail from PHP Using SMTP Authentication and SSL Encryption - Example
            Code:
            <?php
            require_once "Mail.php";
            
            $from = "Sandra Sender <sender@example.com>";
            $to = "Ramona Recipient <recipient@example.com>";
            $subject = "Hi!";
            $body = "Hi,\n\nHow are you?";
            
            $host = "ssl://mail.example.com";
            $port = "465";
            $username = "smtp_username";
            $password = "smtp_password";
            
            $headers = array (&#39;From&#39; => $from,
              &#39;To&#39; => $to,
              &#39;Subject&#39; => $subject);
            $smtp = Mail::factory(&#39;smtp&#39;,
              array (&#39;host&#39; => $host,
                &#39;port&#39; => $port,
                &#39;auth&#39; => true,
                &#39;username&#39; => $username,
                &#39;password&#39; => $password));
            
            $mail = $smtp->send($to, $headers, $body);
            
            if (PEAR::isError($mail)) {
              echo("
            
            " . $mail->getMessage() . "</p>");
             } else {
              echo("
            
            Message successfully sent!</p>");
             }
            ?>
            Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
            Visit: WapMasterz Coming Back Soon!
            _______
            SCRIPTS FOR SALE BY SUBZERO
            Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
            FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
            _______
            Info & Tips
            php.net
            w3schools.com

            Comment


              #7
              lot of thanks, subzero!!!

              Comment

              Working...
              X