[imp] Help w/Imp 2.3.7 and MS SMTP

Max Kalika max@the-triumvirate.net
Mon, 12 Feb 2001 17:51:09 -0800


Quoting hhoffman@r-u-i.com:

> // An array holding any parameters that the Mail object will need to
> // function correctly. For sendmail, this is mainly the sendmail_path
> // option; SMTP requires at least a server and a port (if
> // nonstandard).
> $conf['mailer']['params'] = array();
> 
> I'm not really sure what sure be here??

things like "host", "port", etc.

$conf['mailer']['params']['host'] = 'my.relay.host.com';
$conf['mailer']['params']['port'] = 25;

--mk23