Re: [PHP-DB] email question

2005-03-06 Thread Novice Learner
Hello,
 
I had a very similar problem when I was trying to incorporate this 
functionality. I have my development system at home with Windows XP home 
edition, Apache server, and PHP5 and it would just not send the email from my 
local machine even after changing the settings in the ini file, I know 
something must be missing in my home setup, I hope I will learn that later. 
However when I uploaded the files to my ISP, the email functionality would work 
and emails went through with absolutely no problem.
 
Just my two cents.
 

 

 

sorry for again bothering you,

thanks, yes you are right i am using SMTP.

i have given my smtp server's ip and port number in my php.ini file but
still i could not able to send the emails through my linux m/c. also i
am not receiving any error. the mail goes but not reach to destination. 
after doing the above setting in php.ini i run the php file on windows
machine and the emails are going to destination.

is there any more setting needs to be done in linux (i am using REDHAT
9, PHP 4.2)


with best wishes
balwant

On Thu, 2005-03-03 at 19:48, Brent Baisley wrote:
 First, you don't use POP3 for sending emails, you use SMTP. POP3 is a 
 retrieval mechanism, like IMAP. You actually don't need POP3 or IMAP to 
 send and receive emails, you need it to read them with a typical mail 
 client (i.e. Outlook). Postfix, Sendmail, etc., don't support POP3 and 
 IMAP directly, you need to use another product like Cyrus, Courier or 
 Qpopper to add POP3 and IMAP.
 So, that said, PHP has built-in commands for sending email.
 http://us2.php.net/manual/en/ref.mail.php
 http://us2.php.net/manual/en/function.mail.php
 
 If you read the documentation, you'll notice that there is no option 
 for authenticating. Which means you would need to setup your mail 
 server to allow relaying from your PHP machine. Don't take open 
 relaying lightly, if you do it wrong, you'll be in the spam business. 
 So if you don't know how to setup your mail server for restricted open 
 relaying, you should look at another PHP package (i.e. PEAR) that will 
 authenticate when sending emails.
 
 On Mar 2, 2005, at 3:54 AM, Balwant Singh wrote:
 
  can anybody guide me how i can get subscribed to PHP-DEV forum.
 
  excuse me, i am asking one off the list question.
  i want to use PHP to send email. my webserver has linux OS but we are
  using POP3 for sending emails (on Windows OS). May pls. inform all the
  setting needs to be done for sending an email.
 
 
  with best wishes
  balwant
 
  -- 
  PHP Database Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




-
Celebrate Yahoo!'s 10th Birthday! 
 Yahoo! Netrospective: 100 Moments of the Web 

Re: [PHP-DB] email question

2005-03-06 Thread anirudh dutt
[EMAIL PROTECTED] wrote:
 I know something must be missing in my home setup, I hope I will learn that 
 later. However when I uploaded the files to my ISP, the email functionality 
 would work and emails went through with absolutely no problem.

u need an MTA set up on the machine (eg. qmail, sendmail).

u probably didn't have one on ur home (windows) comp but ur isp had it.

-- 
]#
Anirudh Dutt


...pilot of the storm who leaves no trace
like thoughts inside a dream

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] email question

2005-03-04 Thread Balwant Singh
sorry for again bothering you,

thanks, yes you are right i am using SMTP.

i have given my smtp server's ip and port number in my php.ini file but
still i could not able to send the emails through my linux m/c. also i
am not receiving any error. the mail goes but not reach to destination. 
after doing the above setting in php.ini i run the php file on windows
machine and the emails are going to destination.

is there any more setting needs to be done in linux (i am using REDHAT
9, PHP 4.2)


with best wishes
balwant

On Thu, 2005-03-03 at 19:48, Brent Baisley wrote:
 First, you don't use POP3 for sending emails, you use SMTP. POP3 is a 
 retrieval mechanism, like IMAP. You actually don't need POP3 or IMAP to 
 send and receive emails, you need it to read them with a typical mail 
 client (i.e. Outlook). Postfix, Sendmail, etc., don't support POP3 and 
 IMAP directly, you need to use another product like Cyrus, Courier or 
 Qpopper to add POP3 and IMAP.
 So, that said, PHP has built-in commands for sending email.
 http://us2.php.net/manual/en/ref.mail.php
 http://us2.php.net/manual/en/function.mail.php
 
 If you read the documentation, you'll notice that there is no option 
 for authenticating. Which means you would need to setup your mail 
 server to allow relaying from your PHP machine. Don't take open 
 relaying lightly, if you do it wrong, you'll be in the spam business. 
 So if you don't know how to setup your mail server for restricted open 
 relaying, you should look at another PHP package (i.e. PEAR) that will 
 authenticate when sending emails.
 
 On Mar 2, 2005, at 3:54 AM, Balwant Singh wrote:
 
  can anybody guide me how i can get subscribed to PHP-DEV forum.
 
  excuse me, i am asking one off the list question.
  i want to use PHP to send email. my webserver  has linux OS but we are
  using POP3 for sending emails (on Windows OS). May pls. inform all the
  setting needs to be done for sending an email.
 
 
  with best wishes
  balwant
 
  -- 
  PHP Database Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] email question

2005-03-04 Thread Balwant Singh
can anybody guide me how i can get subscribed to PHP-DEV forum.

excuse me, i am asking one off the list question.
i want to use PHP to send email. my webserver  has linux OS but we are
using POP3 for sending emails (on Windows OS). May pls. inform all the
setting needs to be done for sending an email.


with best wishes
balwant

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] email question

2005-03-03 Thread Brent Baisley
First, you don't use POP3 for sending emails, you use SMTP. POP3 is a 
retrieval mechanism, like IMAP. You actually don't need POP3 or IMAP to 
send and receive emails, you need it to read them with a typical mail 
client (i.e. Outlook). Postfix, Sendmail, etc., don't support POP3 and 
IMAP directly, you need to use another product like Cyrus, Courier or 
Qpopper to add POP3 and IMAP.
So, that said, PHP has built-in commands for sending email.
http://us2.php.net/manual/en/ref.mail.php
http://us2.php.net/manual/en/function.mail.php

If you read the documentation, you'll notice that there is no option 
for authenticating. Which means you would need to setup your mail 
server to allow relaying from your PHP machine. Don't take open 
relaying lightly, if you do it wrong, you'll be in the spam business. 
So if you don't know how to setup your mail server for restricted open 
relaying, you should look at another PHP package (i.e. PEAR) that will 
authenticate when sending emails.

On Mar 2, 2005, at 3:54 AM, Balwant Singh wrote:
can anybody guide me how i can get subscribed to PHP-DEV forum.
excuse me, i am asking one off the list question.
i want to use PHP to send email. my webserver  has linux OS but we are
using POP3 for sending emails (on Windows OS). May pls. inform all the
setting needs to be done for sending an email.
with best wishes
balwant
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
Brent Baisley
Systems Architect
Landover Associates, Inc.
Search  Advisory Services for Advanced Technology Environments
p: 212.759.6400/800.759.0577
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP-DB] email question

2005-03-02 Thread Balwant Singh
can anybody guide me how i can get subscribed to PHP-DEV forum.

excuse me, i am asking one off the list question.
i want to use PHP to send email. my webserver  has linux OS but we are
using POP3 for sending emails (on Windows OS). May pls. inform all the
setting needs to be done for sending an email.


with best wishes
balwant

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php