Click to See Complete Forum and Search --> : Please help, Read Below... Need Help bad


Anon
10-02-2001, 06:32 PM
Hello guys If somebody could please help me. I am having a hella time trying to figure this out.
Ok what I am trying to do
I am trying to connect to a mail server
the mail server is
ARGO MAILSERVERPRO you can see it at
www.argosoft.com

Now my mail server is on a different machine with the addresss of
http:\\mail.nexflo.com

I can connect to my server with ASP Using The MAil Server Com Object Which is called
Mlxsvr.dll

Now I was looking through the PHP.ini Do I need to include >.DLL files there??
if you can get the object to work then Please show and example function call

ok the user name and password that will allow you to connect
user: test@nexflo.com
pass: test
address again: http:\\mail.nexflo.com


If somebody could please help out and maybe even write a little sample script that would be really cool.. I am having a hella time getting this to work
Thank you all very much
Calz

dannys
10-03-2001, 05:07 AM
You don't need to include the DLL, just set the smtp and sendmail_from fields in the php.ini

Yours should read

SMTP = mail.nexflo.com
sendmail_from = test@nexflo.com

HTH

Anon
10-03-2001, 08:06 AM
I am not trying to send mail... I am trying to Read Mail

amcgrath
10-03-2001, 10:36 AM
Try something like this:

$my_mail = imap_open ($mailbox,$user,$pwd);

if($my_mail) {
$the_mail = imap_check($my_mail);

do whatever you need to do...
}

You can get more at: http://www.php.net/manual/en/ref.imap.php