Mário Gamito wrote:
Hi,
I have this very straight forward code to send an e-mail:
$subject_users_subscription_confirmation = "Subscription confirmation";
$message_users_subscription_confirmation = 'Please, click this link to
confirm your subscritpion:
http://www.telbit.pt/subscribe-confirm.php?
Mário Gamito wrote:
> Hi,
>
> I have this very straight forward code to send an e-mail:
>
> $subject_users_subscription_confirmation = "Subscription confirmation";
> $message_users_subscription_confirmation = 'Please, click this link to
> confirm your subscritpion:
> http://www.telbit.pt/subscrib
Hi,
I have this very straight forward code to send an e-mail:
$subject_users_subscription_confirmation = "Subscription confirmation";
$message_users_subscription_confirmation = 'Please, click this link to
confirm your subscritpion:
http://www.telbit.pt/subscribe-confirm.php?email=' . $email . '&c
Ricardo Ríos wrote:
Hi wizards, I 'm trying to use mail function in PHP, but this function
don't
send the email , I have a server with postfix. Does somebody know how to
send an email with php and postfix. Thanks in advance.
Create a phpinfo page and make sure the 'sendmail_path' is set.
If t
John Nichel wrote:
> Ricardo Ríos wrote:
>> Hi wizards, I 'm trying to use mail function in PHP, but this function
>> don't
>> send the email , I have a server with postfix. Does somebody know how to
>> send an email with php and postfix. Thanks in advance.
>>
>
> Does your install of postfix have
Ricardo Ríos wrote:
Hi wizards, I 'm trying to use mail function in PHP, but this function
don't
send the email , I have a server with postfix. Does somebody know how to
send an email with php and postfix. Thanks in advance.
Does your install of postfix have a sendmail wrapper? Is it in the
Hi wizards, I 'm trying to use mail function in PHP, but this function don't
send the email , I have a server with postfix. Does somebody know how to
send an email with php and postfix. Thanks in advance.
On Monday 08 November 2004 08:23, Pete wrote:
> I have a problem with a standard mail() function.
>
> If I put a short message ( "test" ) into it, then the email is sent.
>
> If I put a longer message in (Visitors name and address collected from
> webpage), then the mail is not sent.
So you're su
I have a problem with a standard mail() function.
If I put a short message ( "test" ) into it, then the email is sent.
If I put a longer message in (Visitors name and address collected from
webpage), then the mail is not sent.
No error message is generated, the mail just doesn't arrive.
Take a look at the email address in the log... Seems to be missing a
.com.
Might that be your problem?
-- jon
-Original Message-
From: Luis Lebron [mailto:[EMAIL PROTECTED]
Sent: Monday, April 12, 2004 8:48 AM
To: Php-General (E-mail)
Subject: [PHP] Problems with mail and php
I have a development box that uses our company's Exchange server as an smtp
host. All of a sudden, the php mail function has stopped working.
I can, however, send a message using mutt.
Here's the output of the maillog:
Apr 12 10:38:51 localhost sendmail[11879]: i3CFckaV011877:
to=<[EMAIL PROTEC
Hey guys I recently join this list and this is my first real post to it so
if I f**k something up please do beat me to death. :)
I have a simple mailer script that was mailing POSTed form information to a
client, this script was running on a Debian box w/Apache. This server is
having hardware is
> I must be doing something wrong with the headers. Can someone
> send me an example of how to send a message with multiple addresses
> as BCCs?
mail("[EMAIL PROTECTED]",
"Subject Line"
"Email Contect",
"Bcc: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]\n");
Jason
--
I must be doing something wrong with the headers. Can someone send me an
example of how to send a message with multiple addresses as BCCs?
It is a program i wrote that builds the header from multiple email
addresses in a database. The people on the emails are not getting the
message.
Thanks in a
Hello. I wrote a routine that queries a table (Mysql) to pull about 300
records and record their emails. I iterate over this recorset invoking
the mail() function to send an email for each record in this recordset.
The problem is that on my providers server, there is a big delay before
the script
I had smilar problems before and found out that I missed some "\n"s. It
seems that you missed a "\n" at the end of headers. That might be a reason.
Another solution might be replacing "\n"s with "\r\n". I heard in newsgroups
and in some documentations that this might be problem in some systems.
I
The problems that I'm having with the mail function stem from the extra
arguments that I'm trying to pass it. What I'm trying to do is write a
script to mail links to interesting stories to other people. In doing this,
I want to make the mail appear that it came from the e-mail address of the
pe
rrect?
stas
- Original Message -
From: "Colin May" <[EMAIL PROTECTED]>
To: "Kike" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, March 14, 2001 11:01 AM
Subject: Re: [PHP] Problems with mail function
>
> Quoting Kike (Wed, Mar 1
Quoting Kike (Wed, Mar 14, 2001 at 11:59:32AM -)
> Hi,
> I have a seious problem with the mail function. It does not send the emails.
> It returns 1 but does not send them. I think it may be a problem with
> sendmail permissions. Can you help me? Please.
What do the sendmail mail logs say?
Hi,
I have a seious problem with the mail function. It does not send the emails.
It returns 1 but does not send them. I think it may be a problem with
sendmail permissions. Can you help me? Please.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For a
mail seems to be just throwing the 'extra headers' in with the body...
$email_text_body = "Hello {$people->people_name[$pos]} how are you
today?";
$email_html_body = "";
$email_html_body .= "";
$email_html_body .= "";
$email_html_body .= "";
$email_html_body .= "";
$email_html_b
thanks ill try that
- Original Message -
From: "David Robley" <[EMAIL PROTECTED]>
To: "Chris Anderson" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Wednesday, February 21, 2001 12:39 AM
Subject: Re: [PHP] Problems with Mail
> On Sat, 17 Feb
On Sat, 17 Feb 2001 08:31, Chris Anderson wrote:
Oy - your version of Windows appears to be lagging a few days behind the
real world :=)
> true, here it is. Have fun...sorry ^_^
>
> include "Nav.inc";
> ?>
>
>
>
> if(isSet($send) && ($send == 1))
Isn't this redundant? Your test is really if
Email Address Here:
");
else
echo(">");
?>
");
else
echo("'0'>");
?>
- Original Message -
From: "David Robley" <[EMAIL PROTECTED]>
To: "Chris Anderson" <[EMAIL PROTECTED]>
I use the php mail function in this file, but it
only sends the first line of the text. Any ideas? I attached the
file
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administra
On Sat, 17 Feb 2001 05:40, Chris Anderson wrote:
> > I use the php mail function in this file, but it only sends the first
> line of the text. Any ideas? I attached the file
The mailing list stripped your attachment - perhaps you could paste it
into your message?
--
David Robley
26 matches
Mail list logo