WebSite X5Help Center

 
Kal M.
Kal M.
User

Idea suggestion  en

Autor: Kal M.
Visited 2137, Followers 1, Udostępniony 0  

Can you integrate a script where the server is shared and your scripts do not work. The following is an example from:http://www.authsmtp.com/php-pear-mail/

<html><head></head><body>

<?php

include('Mail.php');

$recipients = '***'; //CHANGE

$headers['From']    = '***'; //CHANGE
$headers['To']      = '***'; //CHANGE
$headers['Subject'] = 'Test message';

$body = 'Test message';

// Define SMTP Parameters

$params['host'] = 'mail.authsmtp.com';
$params['port'] = '25';
$params['auth'] = 'PLAIN';
$params['username'] = 'USERNAME'; //CHANGE
$params['password'] = 'PASSWORD'; //CHANGE

/* The following option enables SMTP debugging and will print the SMTP
conversation to the page, it will only help with authentication issues,
if PEAR::Mail is not installed you won't get this far. */

$params['debug'] = 'true';

// Create the mail object using the Mail::factory method

$mail_object =& Mail::factory('smtp', $params);

// Print the parameters you are using to the page

foreach ($params as $p){
        echo "$p<br />";
}

// Send the message

$mail_object->send($recipients, $headers, $body);
?>
</body></html>

Posted on the
1 ODPOWIEDZI
Incomedia
Claudio D.
Incomedia

Hello Kal,

Thank you very much for your suggestion. We will take it in consideration for the future releases of the program.

Many thanks!

Czytaj więcej
Posted on the from Claudio D.