[PHP] smtp mail question

2009-10-30 Thread Al
Anyone see a problem if I login into the smtp server with Username different than the Return-Path? It seems to work OK; but, I know from experience using the mail servers that increasingly everything must be exactly right to prevent recipient mail servers from rejecting emails. So, I

Re: [PHP] smtp mail question

2009-10-30 Thread John Black
Al wrote: Anyone see a problem if I login into the smtp server with Username different than the Return-Path? It seems to work OK; but, I know from experience using the mail servers that increasingly everything must be exactly right to prevent recipient mail servers from rejecting emails. All

[PHP] SMTP mail server

2009-04-24 Thread Ron Piggott
How do I specify an actual SMTP server? (Like mail.host.com) This is what I have so far: mail($email, $subject, $message, $headers); I was to http://ca2.php.net/manual/en/function.mail.php and saw this syntax: mail ( string $to , string $subject , string $message [, string $additional_headers

Re: [PHP] SMTP mail server

2009-04-24 Thread Adam Williams
Ron Piggott wrote: How do I specify an actual SMTP server? (Like mail.host.com) This is what I have so far: mail($email, $subject, $message, $headers); I was to http://ca2.php.net/manual/en/function.mail.php and saw this syntax: mail ( string $to , string $subject , string $message [,

Re: [PHP] SMTP mail server

2009-04-24 Thread kranthi
if u cant change the configuration settings of php.ini use http://pear.php.net/package/Mail alternatively u can also hav ini_set on top of every page. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SMTP mail server

2009-04-24 Thread Ron Piggott
I am on a shared web site hosting company. They are asking me to edit my PHP script to specify the SMTP using $aditional_parameters on the URL below. If this can't be achieved then I need to confirm this. Ron On Fri, 2009-04-24 at 20:04 -0500, Adam Williams wrote: Ron Piggott wrote:

Re: [PHP] SMTP mail server

2009-04-24 Thread Ron Piggott
I am needing to put this into one specific PHP script. What would the ini_set look like? Ron On Sat, 2009-04-25 at 06:43 +0530, kranthi wrote: if u cant change the configuration settings of php.ini use http://pear.php.net/package/Mail alternatively u can also hav ini_set on top of every

Re: [PHP] SMTP mail server

2009-04-24 Thread kranthi
ini_set(SMTP, mail.host.com); ini_set(smtp_port, 25); http://ca2.php.net/manual/en/mail.configuration.php http://ca2.php.net/manual/en/function.ini-set.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SMTP mail server

2009-04-24 Thread Manuel Lemos
Hello, on 04/24/2009 10:17 PM Ron Piggott said the following: I am on a shared web site hosting company. They are asking me to edit my PHP script to specify the SMTP using $aditional_parameters on the URL below. If this can't be achieved then I need to confirm this. No, AFAIK you cannot

[PHP] smtp mail sending on unix

2003-10-08 Thread Jaanus Torp
Hi, I am running apache in a chrooted enviorment on solaris and trying to get mail() to work over smtp rather than sendmail, but unsuccessfully. php.ini states that this is for win32 only. Is there any solution to that? It seems quite awkward to have the code for smtp but no option to run it.

RE: [PHP] smtp mail sending on unix

2003-10-08 Thread Javier Tacon
Try a class to send emails by smtps, like phpmailer: http://phpmailer.sourceforge.net/ -Mensaje original- De: Jaanus Torp [mailto:[EMAIL PROTECTED] Enviado el: miƩrcoles, 08 de octubre de 2003 11:29 Para: [EMAIL PROTECTED] Asunto: [PHP] smtp mail sending on unix Importancia: Baja Hi

[PHP] SMTP, mail() and piping directly into Sendmail, which is better?

2003-01-22 Thread Jonathan Chum
I'm working on mass mailing list application and doing my research on the part with the actual delivery of the message. I've been using a Perl script called MojoMail which sends out blasts just fine and boasts that SMTP is the fastest way for delivery than with Sendmail using a module called

[PHP] SMTP Mail

2002-02-13 Thread Liam MacKenzie
Hi all, Just wondering if anyone out there's worked out how to send emails through an SMTP server using PHP. Cheers, Liam

Re: [PHP] SMTP Mail

2002-02-13 Thread Liam MacKenzie
13, 2002 7:17 PM Subject: [PHP] SMTP Mail Hi all, Just wondering if anyone out there's worked out how to send emails through an SMTP server using PHP. Cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SMTP Mail

2002-02-13 Thread DL Neil
Liam, Check out http://phpguru.org/ =dn - Original Message - From: Liam MacKenzie [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: 13 February 2002 09:21 Subject: Re: [PHP] SMTP Mail Whoops, my bad! If there's anyone out there that needs to use SMTP: http://phpclasses.upperdesign.com

RE: [PHP] SMTP/mail question

2001-06-22 Thread mailing_list
Hi! I did it! once again what I wanted to do: I wanted to send a mail, but use MAIL FROM: and RCPT TO: from the SMTP-Protocol and check, if the domain is accepted (nslookup MX)! I had a perl script, that does this trick. Unfortunately the php-mail() can't do a RCPT TO: and MAIL FROM: explicitly

[PHP] SMTP/mail question

2001-06-21 Thread mailing_list
Hi, I sent a message last day with subject perl2php - question - but I think I will describe the problem, I solved with perl, instead of asking for a perl2php-code: if I send a mail with the php-mail()-function, and the mail bounces (wrong address - server down ...), the sysadmin of my ISP will

RE: [PHP] SMTP/mail question

2001-06-21 Thread Jason Murray
I tried all possible headers (Return-Path, Error-To, Sender, ...) to redirect the bouncing mail to my address but nothing worked - all bouncing-mails go to root! this works for me: mail([EMAIL PROTECTED], Subject, Email body, Return-path: [EMAIL PROTECTED]\n); Maybe you mistyped the

RE: [PHP] SMTP/mail question

2001-06-21 Thread mailing_list
I tried all possible headers (Return-Path, Error-To, Sender, ...) to redirect the bouncing mail to my address but nothing worked - all bouncing-mails go to root! this works for me: mail([EMAIL PROTECTED], Subject, Email body, Return-path: [EMAIL PROTECTED]\n); Maybe you

Re: [PHP] SMTP/mail question

2001-06-21 Thread Manuel Lemos
Hello mailing_list, On 20-Jun-01 23:06:59, you wrote: I sent a message last day with subject perl2php - question - but I think I will describe the problem, I solved with perl, instead of asking for a perl2php-code: if I send a mail with the php-mail()-function, and the mail bounces (wrong

RE: [PHP] SMTP/mail question

2001-06-21 Thread Aaron Bennett
Title: RE: [PHP] SMTP/mail question Michi, Try having your sysadmin add this line to your apache virtualhost entry: php_admin_value sendmail_path /usr/sbin/sendmail [EMAIL PROTECTED] -t -i (dont forget the '-f' before your email address...) this sets the sendmail envelope headers