Re: [PHP] Sending e-mail via socket

2010-02-23 Thread John Black
On 02/23/2010 01:16 AM, Andre Polykanine wrote: Hello everyone, I've just subscribed to the list, and I already have a question. what I need to do is to send mail using sockets. Actually, the built-in Mail() function is great and I wouldn't have to search for something else if I didn't need more

Re: [PHP] Sending e-mail via socket

2010-02-23 Thread Per Jessen
Paul M Foster wrote: > Second, you're doing this socket operation as though it's a static > one-sided conversation. I'm not an expert, but SMTP conversations > don't normally work this way. You issue the HELO, wait for the > response, issue other commands, wait for the response, etc. The way > you

Re: [PHP] Sending e-mail via socket

2010-02-22 Thread Per Jessen
Andre Polykanine wrote: > Hello everyone, > I've just subscribed to the list, and I already have a question. > what I need to do is to send mail using sockets. Actually, the > built-in Mail() function is great and I wouldn't have to search for > something else if I didn't need more than one messag

Re: [PHP] Sending e-mail via socket

2010-02-22 Thread Paul M Foster
On Tue, Feb 23, 2010 at 02:16:24AM +0200, Andre Polykanine wrote: > Hello everyone, > I've just subscribed to the list, and I already have a question. > what I need to do is to send mail using sockets. Actually, the > built-in Mail() function is great and I wouldn't have to search for > something

Re: [PHP] Sending e-mail via socket

2010-02-22 Thread Rene Veerman
have you tried mail() with a large bcc header? On Tue, Feb 23, 2010 at 1:16 AM, Andre Polykanine wrote: > Hello everyone, > I've just subscribed to the list, and I already have a question. > what I need to do is to send mail using sockets. Actually, the > built-in Mail() function is great and I w

Re: [PHP] Sending E-mail

2006-12-06 Thread Ivo F.A.C. Fokkema
Also, try to use a local email address first. Possibly it gets sent, but the remote server blocks the email as spam. You can check that by having the email sent to your local user, and check if it arrives there. HTH On Mon, 04 Dec 2006 16:53:19 +0100, Jochem Maas wrote: > Janet Smith wrote: >>

Re: [PHP] Sending E-mail

2006-12-05 Thread Richard Lynch
On Mon, December 4, 2006 8:11 am, Janet Smith wrote: > We have an application using PHP. If users have forgotten their > password, they click on the link 'Forgot Password' and enter this > e-mail > address. This is suppose to send their new password to the e-mail > address provided. Errr. So if I

Re: [PHP] Sending E-mail

2006-12-04 Thread Jochem Maas
Janet Smith wrote: > I wasn't really sure where to start looking, but I think I have enough > information that I can go and look at how we have things set up. I will > try to provide more information as I find it. chances are that the following function is being used. http://php.net/mail you sh

Re: [PHP] Sending E-mail

2006-12-04 Thread Janet Smith
I wasn't really sure where to start looking, but I think I have enough information that I can go and look at how we have things set up. I will try to provide more information as I find it. Thanks >>> Jochem Maas <[EMAIL PROTECTED]> 12/4/2006 10:42 AM >>> Janet Smith wrote: > We have an applicati

Re: [PHP] Sending E-mail

2006-12-04 Thread Jochem Maas
Janet Smith wrote: > We have an application using PHP. If users have forgotten their > password, they click on the link 'Forgot Password' and enter this e-mail > address. This is suppose to send their new password to the e-mail > address provided. We can not get the e-mail to be sent. I have change

Re: [PHP] Sending E-mail

2006-12-04 Thread T . Lensselink
Without any error messages it will be hard to resolve.. Try to provide some more information about the problem. On Mon, 04 Dec 2006 09:11:05 -0500, "Janet Smith" <[EMAIL PROTECTED]> wrote: > We have an application using PHP. If users have forgotten their > password, they click on the link 'Forgot

Re: [PHP] Sending E-Mail - Setting O/S User

2005-10-29 Thread Richard Lynch
On Thu, October 27, 2005 5:04 am, Cabbar Duzayak wrote: > When someone sends an e-mail using php, exim sets the following 2 > headers (along with others of course): > > Received: from x.x.x.x (EHLO host.mydomain.com) (x.x.x.x) by > mta151.mail.dcn.yahoo.com with SMTP; Wed, 24 Sep 2005 10:29:04

Re: [PHP] sending e-mail with variables

2001-06-27 Thread Jason Stechschulte
On Tue, Jun 26, 2001 at 12:13:28PM -0700, Richard Kurth wrote: > I have a function that is for sending an e-mail to the customer This is probably where your problem is. $hostname, $domain, $tld, and $fullname have to be defined in the function. Try echoing them inside of the function. You shou

RE: [PHP] sending e-mail with variables

2001-06-26 Thread Kristian Duske
> $subject =$row["msub"]; //"Your webhosting account at > $hostname.$domain$tld"; > $message .= $row["mline1"]; //"Dear $fullname,\n"; > > $message .= $row["mline2"];//"Your webhosting account has been > created. Please use the\n"; > $message .= $row["mline3"];//"following data to log in:\n"; > No