2010/12/2 Michael Crowl :
>
> Possible solutions? I'm a little frazzled and a little undereducated here.
Use the under-appreciated fifth paramter in mail() to pass the -f
flag to sendmail, like so:
--
Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting
(866-) 725-4321
http:
2010/12/2 Michael Crowl :
* snip *
> Also, we
> have Redmine running on the same server, and it sends admin emails out just
> fine - however, I don't think it calls sendmail directly like our PHP
> install, but connects directly to the local SMTP server.
Sounds like a solution to me: connect to
Okay, I know this is a Sendmail/SMTP admin issue, but it's PHP-related
and I figured someone here might have a clue or might have solved this
issue before. I've come into this dev server after many hands have
touched it, and I'm not quite sure how to proceed, nor am I a Linux genius.
We're
Can you send it to other email addresses?
--
Vikash Kumar
http://vika.sh
On Thu, Jan 14, 2010 at 12:16 PM, Bob Strasser wrote:
> I'm having trouble sending info from a form to the list-subscr...@domain
> Does anyone know why ezmlm doesn't recognize the mail() function?
>
>
I'm having trouble sending info from a form to the list-subscr...@domain
Does anyone know why ezmlm doesn't recognize the mail() function?
It looks like using XAMPP wasn't strictly necessary. I tried running
this example again using my previous versions of mysql and apache and
it worked fine. So the key is to configure Sendmail as described at
the URL I gave.
On Wed, Nov 25, 2009 at 10:58 AM, James Prentice wrote:
> After a long del
After a long delay, I've finally got mail working. I had decided to
move on in the book that I'm working through (Head First PHP & MySQL)
but doubled back to address the mail issue again. This is how I
finally got it to work:
1. Switched to XAMPP for linux rather than using my existing versions
of
Bob McConnell wrote:
I strongly recommend you call the help desk at Shaw and ask them to
explain what is happening. They should know what is going on with their
servers. Everyone on this list appears to be guessing at the problem,
which is not likely to help you.
But they are educated guesses :
From: James Prentice
> I have tried setting both $to and $email to be the same shaw address
> since I assumed it should be recognized by the mail server, but it's
> still getting bounced. So why is 'www-d...@homemade' being listed as
> the sender? Any ideas?
I strongly recommend you call the help
But it seems like the 'From:' address being given to the PHP mail()
function is maybe being ignored, because the error log lists
'www-d...@homemade' as being the sender, rather than listing the shaw
address.
The snippet from the PHP code:
$email = $_POST['email'];
...
mail($to, $subject, $msg, 'F
I also suspect that the problem is due to the sender address, but I
have tried using the shaw email address for the From: address that's
given to the mail() function and it still gets bounced. It seems like
the ISP should consider that address valid.
On Sat, Oct 24, 2009 at 2:20 PM, Per olof Lju
James Prentice wrote:
It sends the bounced message to /var/mail/www-data and I get this:
--19BE8A70109.1256417846/homemade
Content-Description: Delivery report
Content-Type: message/delivery-status
Reporting-MTA: dns; homemade
X-Postfix-Queue-ID: 19BE8A70109
X-Postfix-Sender: rfc822; www-d...@h
It sends the bounced message to /var/mail/www-data and I get this:
--19BE8A70109.1256417846/homemade
Content-Description: Delivery report
Content-Type: message/delivery-status
Reporting-MTA: dns; homemade
X-Postfix-Queue-ID: 19BE8A70109
X-Postfix-Sender: rfc822; www-d...@homemade
Arrival-Date: Sa
James Prentice wrote:
> Also, I notice that in the mail.log file, the 'from:' value is
'www-d...@homemade'. The actual 'from:' value is provided to the php
mail() function via a web form, so should be somebody's email address
(e.g. my own in this case).
I think PHP will use the apache user and
Thanks, John. I set up the sasl_passwd file as per your instructions
but am still getting status=bounced. I'm wondering, what should the
values in main.cf be for 'myhostname' and 'mydestination'?
These pages give some info on the Shaw mail servers, but I'm not
certain which I should be using:
htt
Paul M Foster wrote:
> 4. All due respect to Kranthi, but I believe he's wrong about relaying
mail from your webserver to the ISP's mailserver. I believe the ISP's
mailserver doesn't care, as long as the mail comes from your "pipe". You
could probably call yourself "pi...@pepperoni.com" and your
On Fri, Oct 23, 2009 at 09:11:25PM -0700, James Prentice wrote:
> I found the mail server for my ISP (shawmail.vc.shawcable.net) and
> edited main.cf in the following manner:
>
> myhostname = shawcable.net
> relayhost = [shawmail.vc.shawcable.net]
>
> I still don't receive the mail from the PHP
i never worked with postfix, but form my experience with hmail server
i can say that you need to relay through a mail account of ISP(not the
server itself)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I found the mail server for my ISP (shawmail.vc.shawcable.net) and
edited main.cf in the following manner:
myhostname = shawcable.net
relayhost = [shawmail.vc.shawcable.net]
I still don't receive the mail from the PHP script though. The error
log from /var/log/mail.log is this:
Oct 23 21:00:31 h
From: Paul M Foster
> Regarding the rejection of dynamic IPs by smarthosts, are you saying
> that it's a "blacklist" of sorts that lets them know an IP is dynamic?
> (Serious question. I don't know the mechanism by which they determine
> what is and isn't a dynamic IP.)
You are talking about two
Paul M Foster wrote:
Regarding the rejection of dynamic IPs by smarthosts, are you saying
that it's a "blacklist" of sorts that lets them know an IP is dynamic?
(Serious question. I don't know the mechanism by which they determine
what is and isn't a dynamic IP.)
I run my own mail server and us
i faced the same problem quite a few times.
the general email route is
php script -> sender smtp server -> receiving mail server
in your case path 2 is broken. meaning port 25 is blocked by your ISP
the work around is:
1. see if your ISP provides you with an SMTP account that is not blocked (OR)
On Thu, Oct 22, 2009 at 11:40:34PM -0500, Shawn McKenzie wrote:
> This is fairly accurate in premise but just to clarify. Mailservers
> don't operate like this by default and there is really no "trust".
> There are public blacklists that a mailserver can be configured to use
> that tell the mai
Paul M Foster wrote:
> On Thu, Oct 22, 2009 at 06:24:14PM -0700, James Prentice wrote:
>
> One other note. People look at me like I'm crazy when I mention this,
> but I've seen it quite a bit at various internet mail servers.
> Sometimes, in order to accept email from you, the internet mail server
On Thu, Oct 22, 2009 at 06:24:14PM -0700, James Prentice wrote:
> How would I determine my ISP's SMPT server ID? And do I need to edit
> main.cf in order to use that server?
What ID? There's no ID needed. You just configure postfix to relay any
non-local mail sent to it to the SMTP server at your
How would I determine my ISP's SMPT server ID? And do I need to edit
main.cf in order to use that server?
Also, is there a way to test the script just sending an email locally?
I tried sending the email to use...@localhost, but the email was still
not received.
On Thu, Oct 22, 2009 at 4:15 PM,
The problem is you won't be trusted to deliver mail directly to most
mail servers unless you have a static IP. Even then thats no
guarantee. What you have to do is relay through your ISP's SMTP
server where you're "trusted". You should also be able to setup PHP
to use your ISP's SMTP server and
I'm trying to use the php mail() function to send a mail within a php
script. This is using PHP 5.2.4 and Ubuntu Hardy Heron linux. The
script runs fine and the return value of the mail function is TRUE,
but the mail is never received. I'm trying to send an email to my
gmail account via the local s
t;
> Anyway those are somethings you could try as you have supplied no code
> to check syntax and/or given any other testing you've tried.
>
> Good Luck,
> David
>
>
> -Original Message-
> From: Julian Muscat Doublesin [mailto:opensourc...@gmail.com]
> S
ou've tried.
Good Luck,
David
-Original Message-
From: Julian Muscat Doublesin [mailto:opensourc...@gmail.com]
Sent: Saturday, June 20, 2009 1:59 PM
To: php-general@lists.php.net
Subject: [PHP] PHP Mail Function
Hello Everyone,
I have written an e-mail function that sends e-mai
Hello Everyone,
I have written an e-mail function that sends e-mail to my domain that
forwards it to a gmail account.
When I use the gmail address directly it works fine. When I use my mail
domain i don't get anything.
Has anyone experienced this? Can anyone give me some advice?
Thanks in advan
On Thu, February 14, 2008 8:34 am, julian wrote:
> I am using phpmailer currently to send email from my applications. My
> ISP is restricting the usage of email without SSL/TLS and my SMTP
> connections have started to fail...
>
> Any hints on the best approach to send email from php appplciations
julian wrote:
> I am using phpmailer currently to send email from my applications. My
> ISP is restricting the usage of email without SSL/TLS and my SMTP
> connections have started to fail...
>
> Any hints on the best approach to send email from php appplciations ?,
I think the best way is to ha
Hi,
I am using phpmailer currently to send email from my applications. My
ISP is restricting the usage of email without SSL/TLS and my SMTP
connections have started to fail...
Any hints on the best approach to send email from php appplciations ?, I
wish I could use my standard gmail/yahoo
Use something like http://phpmailer.sf.net/ which handles everything for
you already :)
Or:
http://www.phpguru.org/static/htmlMimeMail5.html
and
http://www.phpguru.org/downloads/html.mime.mail/
--
Richard Heyes
+44 (0)844 801 1072
http://www.websupportsolutions.co.uk
Knowledge Base and Help
Vanessa Vega wrote:
Hello to everyone!..I had problems with attaching a document to an email
using PHP..can somebody share some ideas on how to properly do it?
Use something like http://phpmailer.sf.net/ which handles everything for
you already :)
--
Postgresql & php tutorials
http://www.de
Hello to everyone!..I had problems with attaching a document to an email
using PHP..can somebody share some ideas on how to properly do it?
Thanks in advance!
Vanessa
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
For whatever reason I can't pass the variable $email into the mail function to
make it send me an email..can anyone help?
Here is my code
body
{
background: #131313;
font-family: Verdana, Arial;
font-weight: bold;
font-size: 9px;
color: #FF;
}
On Tue, March 20, 2007 4:54 am, Delta Storm wrote:
Disclosure:
What I understand of Unicode could fit in a matchbook...
> I'm having problem with character encoding in PHP mail functions.
>
> CODE:
> $headers.= "Content-Type: text/html; charset=iso-8859-1";
> $headers .= "MIME-Versi
Hi.
Recently I have this kind of issue.
This is a possible solution:
$text="message text";
$subject="message subject";
$header="From: [EMAIL PROTECTED]".
"MIME-Version: 1.0\r\n".
"Content-type: text/html; charset=utf-8\r\n".
"Content-Transfer-Encoding: 8bit\r\n";
$subjec
2007. 03. 20, kedd keltezéssel 10.54-kor Delta Storm ezt írta:
> Hi,
>
> I'm having problem with character encoding in PHP mail functions.
>
> CODE:
> $headers.= "Content-Type: text/html; charset=iso-8859-1";
> $headers .= "MIME-Version: 1.0 ";
> $headers .= "Content-T
Hi,
I'm having problem with character encoding in PHP mail functions.
CODE:
$headers.= "Content-Type: text/html; charset=iso-8859-1";
$headers .= "MIME-Version: 1.0 ";
$headers .= "Content-Transfer-Encoding: 8bit".$eol.$eol;
$headers .="Content-Type: multipart/a
A couple of days ago somebody posted a message with a routine to check
input fields for potential spam/hacking. I believe it was on this
list, but not sure.
Of course I can't find that message any more...
Could the original poster, please repost?
Thanks.
Gerry
--
PHP General Mailing List (http
On Mon, October 31, 2005 5:22 am, Paul Waring wrote:
> On Mon, Oct 31, 2005 at 12:56:01PM +0200, Clive wrote:
>> Thanks I actually want to send 24 000 emails with 2 meg attachments.
Woof.
mail() is DEFINITELY the wrong answer!
Firing up an SMTP connection and spewing 24,000 emails with 2 meg
att
On Mon, October 31, 2005 4:10 am, Clive wrote:
> does anyone know whats better/uses less resource etc:
>
> If I run a loop to send a 1000 emails, should I use php's mail
> fucntions
> or send directly to the servers smtp server.
SMTP
PHP's mail() function was never designed for high-volume email.
On Mon, Oct 31, 2005 at 12:56:01PM +0200, Clive wrote:
> Thanks I actually want to send 24 000 emails with 2 meg attachments.
Oh. You definitely don't want to be using an external SMTP server if you
can help it then, and you should really be splitting those up into
chunks (no more than 1,000 at a
On 31 Oct 2005, at 10:34, Richard Heyes wrote:
Depends on your setup. If you're on Linux/Unix you could use the
mail() function along with the "-odq" option to Sendmail/Postfix/
Exim etc (fifth argument to the mail() function) which will dump
all the mails into the MTAs queue. After this, th
On Mon, Oct 31, 2005 at 12:38:09PM +0200, Clive wrote:
> what I mean is: im using a class called phpmailer and it has the option
> to sent to a smtp server, I suppose this means that they do open a
> socket to the smtp server.
All that means is that you can specify an external SMTP server (e.g.
Clive wrote:
Hi
does anyone know whats better/uses less resource etc:
If I run a loop to send a 1000 emails, should I use php's mail fucntions
or send directly to the servers smtp server.
Depends on your setup. If you're on Linux/Unix you could use the mail()
function along with the "-odq"
Hi Clive,
Monday, October 31, 2005, 10:10:02 AM, you wrote:
> does anyone know whats better/uses less resource etc:
> If I run a loop to send a 1000 emails, should I use php's mail fucntions
> or send directly to the servers smtp server.
Use PEAR Mail Queue.
Cheers,
Rich
--
Zend Certified En
On Mon, Oct 31, 2005 at 12:10:02PM +0200, Clive wrote:
> does anyone know whats better/uses less resource etc:
>
> If I run a loop to send a 1000 emails, should I use php's mail fucntions
> or send directly to the servers smtp server.
What do you mean by "send directly"? Are you thinking of send
Hi
does anyone know whats better/uses less resource etc:
If I run a loop to send a 1000 emails, should I use php's mail fucntions
or send directly to the servers smtp server.
clive
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi
On 5/5/05, Aaron Gould <[EMAIL PROTECTED]> wrote:
> Eustace wrote:
> > I am relatively new to PHP and could use some help. I have a form, which is
> > basically in an email format, from, subject, and message. How do I then send
> > this to an email? I know a bit about the mail function, somebo
I am relatively new to PHP and could use some help. I have a form, which is
basically in an email format, from, subject, and message. How do I then send
this to an email? I know a bit about the mail function, somebody show me the
ropes please!
See the example here:
http://us2.php.net/manual/en/func
Eustace wrote:
I am relatively new to PHP and could use some help. I have a form, which is
basically in an email format, from, subject, and message. How do I then send
this to an email? I know a bit about the mail function, somebody show me the
ropes please!
Eustace
Everything you need to know shou
I am relatively new to PHP and could use some help. I have a form, which is
basically in an email format, from, subject, and message. How do I then send
this to an email? I know a bit about the mail function, somebody show me the
ropes please!
Eustace
Kelly wrote:
I am having trouble with PHP 5.0.3. I am running Apache 1.3.29. I am
running Solaris 9 x86 on an Intel box.
I get no errors when I start Apache. I get no errors when I run
configtest.
My problem is mail() does not work. It does invoke sendmail as there
is activity in sendmail
I am having trouble with PHP 5.0.3. I am running Apache 1.3.29. I am
running Solaris 9 x86 on an Intel box.
I get no errors when I start Apache. I get no errors when I run configtest.
My problem is mail() does not work. It does invoke sendmail as there is
activity in sendmail log.
When I ge
PHPDiscuss - PHP Newsgroups and mailing lists wrote:
> I have a dedicated Red Hat linux boxed leased from Interland and the php
> mail function does not work. I have found several articles on things to
> try and have tried everything I saw but to no avail. I set up a php
> script to mail and then
> I have a dedicated Red Hat linux boxed leased from Interland and the php
> mail function does not work. I have found several articles on things to
> try and have tried everything I saw but to no avail. I set up a php
> script to mail and then print the return code and I get a 1 (success).
> But
I have a dedicated Red Hat linux boxed leased from Interland and the php
mail function does not work. I have found several articles on things to
try and have tried everything I saw but to no avail. I set up a php
script to mail and then print the return code and I get a 1 (success).
But the mail
I have a dedicated Red Hat linux boxed leased from Interland and the php
mail function does not work. I have found several articles on things to
try and have tried everything I saw but to no avail. I set up a php
script to mail and then print the return code and I get a 1 (success).
But the mail
I have a dedicated Red Hat linux boxed leased from Interland and the php
mail function does not work. I have found several articles on things to
try and have tried everything I saw but to no avail. I set up a php
script to mail and then print the return code and I get a 1 (success).
But the mail
TECTED]
Subject: Re: [PHP] PHP mail redirect ??
Hello,
There is another smtp server ... I should of provided
more info ...
I set up a postfix server to do the following:
1. Receives mail from outside ...
if it is NOT spam
2. Virus scanned and then forward to exchange
if it IS SPAM
2. Sent to a
om: Michael Gale [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, December 01, 2004 7:48 PM
> To: Vail, Warren; [EMAIL PROTECTED]
> Subject: Re: [PHP] PHP mail redirect ??
>
>
> Hello,
>
> There is another smtp server ... I should of provided
> more info ...
>
to be a daemon
running on that machine AND there needs to be a mailbox for "bert" set up on
that server.
HTH
Warren Vail
-Original Message-
From: Michael Gale [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 01, 2004 7:26 PM
To: [EMAIL PROTECTED]
Subject: [PHP] PHP mail redir
eeds to be a daemon
running on that machine AND there needs to be a mailbox for "bert" set up on
that server.
HTH
Warren Vail
> -Original Message-
> From: Michael Gale [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, December 01, 2004 7:26 PM
> To: [EMAIL PROTECTED]
Hello,
I have been playing around with a web mail app called NOCC
(http://nocc.sourceforge.net/)
It has some nice features and is quick.
I want to add in a redirect button for mail, there is a forward button
but it forwards mail just like a regular client for ... as expected.
But I want a redi
When hitting php pages that use the mail() function, I get a 5 second hang
in the browser. The mail is then being delivered fine.
Many of the same scripts that use this mail function ran fine with ½ sec. or
less delay on my old redhat box.
Any ideas how to make it run quicker would be greatly ap
Hello,
On 11/14/2004 03:49 AM, Curt Zirzow wrote:
Requiring authentication is one common solution to not leave
relaying opened.
Common but not the *only* way.
That is irrelevant because most servers that issue the message above
only allow relaying with prior authentication.
FYI, the class that I
* Thus wrote Manuel Lemos:
> Hello,
>
> On 11/14/2004 02:15 AM, Curt Zirzow wrote:
> >>>If you even paid attention to Jason's message a simple google
> >>>search for:
> >>>
> >>>smtp 550 5.7.1 unable to rely for
> >>>
> >>>returns a bunch more information than spam.
> >>
> >>FYI, that is a common
Hello,
On 11/14/2004 02:15 AM, Curt Zirzow wrote:
If you even paid attention to Jason's message a simple google
search for:
smtp 550 5.7.1 unable to rely for
returns a bunch more information than spam.
FYI, that is a common error message that SMTP servers return when they
only allow relaying messa
* Thus wrote Manuel Lemos:
> Hello,
>
> On 11/13/2004 04:08 AM, Curt Zirzow wrote:
> >* Thus wrote Jason Wong:
> >
> >>On Wednesday 10 November 2004 12:36, Garth Hapgood - Strickland wrote:
> >>
> >>>But when I get the following error back.:
> >>> Warning: mail(): SMTP server response: 550 5.7.1 U
* Thus wrote Manuel Lemos:
> Hello,
>
> On 11/14/2004 01:29 AM, Curt Zirzow wrote:
> >
> >If you even paid attention to Jason's message a simple google
> >search for:
> >
> > smtp 550 5.7.1 unable to rely for
> >
> >returns a bunch more information than spam.
>
> FYI, that is a common error mess
Hello,
On 11/14/2004 01:29 AM, Curt Zirzow wrote:
But when I get the following error back.:
Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for
[EMAIL PROTECTED]
...
This is a VERY FAQ.
googling the error message will tell you what it means. Searching the
archives> will give you s
Hello,
On 11/13/2004 04:08 AM, Curt Zirzow wrote:
* Thus wrote Jason Wong:
On Wednesday 10 November 2004 12:36, Garth Hapgood - Strickland wrote:
But when I get the following error back.:
Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for
[EMAIL PROTECTED]
...
This is a VERY FAQ.
* Thus wrote Jason Wong:
> On Wednesday 10 November 2004 12:36, Garth Hapgood - Strickland wrote:
> > But when I get the following error back.:
> > Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for
> > [EMAIL PROTECTED]
> >
> >...
>
> This is a VERY FAQ.
>
> googling the erro
PROTECTED]
Subject: Re: [PHP] php mail() error
On Wed, 10 Nov 2004 23:14:43 +, Jason Wong
<[EMAIL PROTECTED]> wrote:
> Or you can wait for Manuel Lemos' reply :)
Good one. :)
--
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http:
od - Strickland [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 10, 2004 6:06 PM
To: [EMAIL PROTECTED]
Subject: [PHP] php mail() error
Im using the php mail() function to try send an email to a user that has
just registered.
mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers
Garth Hapgood - Strickland wrote:
> But when I get the following error back.:
Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for
[EMAIL PROTECTED]
Can someone help me out, by telling me what it means or what Im doing wrong?
Your mail server is not set up to send mail from (or r
On Wed, 10 Nov 2004 23:14:43 +, Jason Wong <[EMAIL PROTECTED]> wrote:
> Or you can wait for Manuel Lemos' reply :)
Good one. :)
--
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: h
On Wednesday 10 November 2004 12:36, Garth Hapgood - Strickland wrote:
> Im using the php mail() function to try send an email to a user that has
> just registered.
>
> mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' ,
> 'Welcome');
>
> But when I get the following error b
Im using the php mail() function to try send an email to a user that has
just registered.
mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' ,
'Welcome');
But when I get the following error back.:
Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for
[EMAIL
I have php installed on my PC as well as an apache webserver and mysql. I am
using cox.net as my cable internet provider. They block port 25 but I do not
know if that affects what I am trying to do... which is:
use the mail() function to send email for my user activation script. I am
trying to tes
Using mail($to, $subject, $content, $headers) takes way too long when
attempting to mail to 30k people. This seems to be a result of a socket
being opened for each send. Is there a better way to approach this
situation via php?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
[snip]
Is there a mail function or object that I can use on my PHP sites that
does
the same as the CDONTS object in ASP? Where can I find some tutorials
on
this subject?
[/snip]
The manual works fine for most http://www.php.net/mail
--
PHP General Mailing List (http://www.php.net/)
To unsubscrib
Dear All
Is there a mail function or object that I can use on my PHP sites that does
the same as the CDONTS object in ASP? Where can I find some tutorials on
this subject?
Regards
Jacques
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
* Thus wrote Stéphane Paquay ([EMAIL PROTECTED]):
> Hi all,
>
> I'm using the mail() fonction to send email and it takes 60 seconds to send
> a simple email. Maybe it's due to the sendmail configuration, or maybe not,
> I'm not really sure, 'cos I'm not a Linux expert.
The odds are pretty high th
Hi all,
I'm using the mail() fonction to send email and it takes 60 seconds to send
a simple email. Maybe it's due to the sendmail configuration, or maybe not,
I'm not really sure, 'cos I'm not a Linux expert.
Anyway, I cannot take so long to send a simple mail with PHP, so I need to
find a solut
When I try to use a php script, to send an email, the From header is
replaced by a senders email address of my provider. Is there any way to make
it so my email address shows up in the From header?
In the script I used fake addresses, because of client privacy reasons...
--
PHP General Maili
On Thursday 14 November 2002 17:02, Martin Hudec wrote:
> Hello all,
>
> I would like to ask how can I make registration confirmation by
> email...user will receive mail confirming his registration immediately
> after he registers in application.
> is it possible to make mail()
> function fil
Hello all,
I would like to ask how can I make registration confirmation by
email...user will receive mail confirming his registration immediately
after he registers in application.is it possible to make mail()
function filled with data from registration (email)?
--
Best regards,
Martin
Ühel ilusal päeval [14-10-2002 22:46] kirjutas John W. Holmes:
> > Hey do you guys know how to correct this problem with sending email?
> >
> > A custumer uses mail() to send the email and it isn't deliverable. So
> the
> > message bounces. But since the local sendmail sent the email it thus
> >
From: "Brad Dameron" <[EMAIL PROTECTED]>
To: "'PHP'" <[EMAIL PROTECTED]>
Sent: Monday, October 14, 2002 8:44 PM
Subject: RE: [PHP] php mail()
Hey do you guys know how to correct this problem with sending email?
A custumer uses mail() to send the email and i
Silverdale, WA.
1-888-8TSCNET
> -Original Message-
> From: John W. Holmes [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 14, 2002 12:47 PM
> To: 'Brad Dameron'; 'PHP'
> Subject: RE: [PHP] p
> Hey do you guys know how to correct this problem with sending email?
>
> A custumer uses mail() to send the email and it isn't deliverable. So
the
> message bounces. But since the local sendmail sent the email it thus
> bounces
> to root's mailbox instead of say the replyto address. Anyone know
> www.tscnet.com
> Silverdale, WA.
> 1-888-8TSCNET
>
>
>
> > -Original Message-
> > From: John W. Holmes [mailto:[EMAIL PROTECTED]]
> >
'Rodrigo Peres'; 'PHP'
> Subject: RE: [PHP] php mail()
>
>
> > Hi list,
> >
> > I trying to send mail using PHP's mail() function without success. My
> > email
> > is rejected because it goes with apache@localhost. I've tried
> ev
> Hi list,
>
> I trying to send mail using PHP's mail() function without success. My
> email
> is rejected because it goes with apache@localhost. I've tried
everything
> put
> a diferent from in header etc.
>
> Does anyone have a clue
>
> My system is a RedHAT 7, PHP4.2.3, sendmail
>
> thank's
Hi list,
I trying to send mail using PHP's mail() function without success. My email
is rejected because it goes with apache@localhost. I've tried everything put
a diferent from in header etc.
Does anyone have a clue
My system is a RedHAT 7, PHP4.2.3, sendmail
thank's n advance
--
--
PH
1 - 100 of 145 matches
Mail list logo