On Tue, July 25, 2006 11:47 pm, Chris wrote:
> There's a default for reply-to in the php.ini? What's the variable
> called - I can't see one. I can see these:
> ; For Win32 only.
> sendmail_from = [EMAIL PROTECTED]
>
> ; For Unix only. You may supply arguments as well (default: 'sendmail
> -t -i'
Schalk wrote:
Greetings Everyone,
What in the piece of code below might be causing the headers for from
and reply-to to be set incorrectly?
'
$headers = "MIME-Version: 1.0\r\n".
"Content-type: text/html; charset=iso-8859-1\r\n".
"From: ".$email."\r\n".
"Reply-to: ".$email."\r\n".
"Date: ".dat
Greetings Everyone,
What in the piece of code below might be causing the headers for from
and reply-to to be set incorrectly?
'
$headers = "MIME-Version: 1.0\r\n".
"Content-type: text/html; charset=iso-8859-1\r\n".
"From: ".$email."\r\n".
"Reply-to: ".$email."\r\n".
"Date: ".date("r")."\r\n";
Hello all,
I searched for this but did not find what I was looking for. I want to send
a file from a directory, i know how to do that in txt but I would like to
send a doc or rtf document. Is the header like this:
$headers = "Content-Type: multipart/mixed";
Thanks,
~WILL~
--
PHP General Maili
You can view the source from an email message with Outlook or Thunderbird, and it will show headers and all that stuff...
---
Miguel J. Jiménez
ISOTROL, S.A. (Área de Internet)
Avda. Innovación nº1, 3ª - 41020 Sevilla (ESPAÑA)
[EMAIL PROTECTED]
TLFNO. 955036800 ext. 111
--
PHP General Mailing List
Hi Guys
I am building a newsletter system, and i have never really learnt the
correct way/format or exact content that should go into mail headers.
Currently i use the following
$MailHeaders .= "MIME-version: 1.0\r\n";
$MailHeaders .= "Content-Type: text/".$_Vars['Type'].";
charset=us-ascii\r
ering policy
and if they do what is it.
Debbie
- Original Message -
From: "Tom Rogers" <[EMAIL PROTECTED]>
To: "debbie_dyer" <[EMAIL PROTECTED]>
Sent: Tuesday, October 01, 2002 2:13 AM
Subject: Re: [PHP] mail headers & mail filtering
> Hi,
>
>
Debbie,
Your post got through. I've not seen any replies. If all ISPs dealt with
spam generated by their own customers promptly, and passed on the info
to the right ISP if not them, then the net could be virtually spam free
(well, maybe).
Regards
Chris
Debbie Dyer wrote:
>I sent this mail
I sent this mail earlier:-
"More and more emails seem to be getting blocked by mail filtering systems looking for
spam (but trashing legitimate mail at the same time). Does anyone have any tips for
ensuring mails get through these systems (with regard to headers) or do we just have
to accept n
More and more emails seem to be getting blocked by mail filtering systems looking for
spam (but trashing legitimate mail at the same time). Does anyone have any tips for
ensuring mails get through these systems (with regard to headers) or do we just have
to accept now that email can no longer b
On Fri, May 24, 2002 at 10:58:08AM -0500, CDitty wrote:
> if(IsSet($Mime_Version)){
> $Mime_Version = "MIME-Version: $Mime_Version\r\n";
> }
Man, THINK!
Did you set $Mime_Version anywhere in your code before this point?
What happens here if $Mime_Version isn't set already?
Then, remem
On Saturday 25 May 2002 01:29, CDitty wrote:
> I have looked at it and from what I understand, it should be working but
> it's not.
Try plugging in fixed strings for your headers and see what results.
--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integ
I have looked at it and from what I understand, it should be working but
it's not.
At 12:18 PM 5/24/2002, you wrote:
>Hi:
>
> > Per your request..
>
>[... code snipped ...]
>My request was really for you to examine your code, not to send the code
>to me:
>
>
> > >... I'm guessing the $Mime_V
Hi:
> Per your request..
[... code snipped ...]
My request was really for you to examine your code, not to send the code
to me:
> >... I'm guessing the $Mime_Version is only
> >getting "Status:\n" stuck into it. Then, your $headers string adds the
> >extra "\n" which results in the follow
Per your request..
Chris
// To email address
if(substr($lines[$i], 0, 2) == "To"){
$To = substr($lines[$i], 4, strlen($lines[$i]));
eregi("([A-Z0-9\.\-]+@[A-Z0-9\.\-]+\.[A-Z\.]+)", $To, $To);
}elseif(substr($lines[$i], 0, 4) == "From"){// From email address
$From =
On Thu, May 23, 2002 at 10:19:51PM -0500, CDitty wrote:
> $to = "$user_email[0]";
> $subj = "$Subject";
> $msg = "$Message";
>
> $headers = "From: $From[1]\n";
> $headers .= "$Mime_Version\n";
> $headers .= "$Content_Type\n";
You're not showing us how you come up with the $From[1], $Mime_Versio
>Sent: Friday, May 24, 2002 1:20 PM
>To: [EMAIL PROTECTED]
>Subject: [PHP] Mail Headers problem...
>
>
>I am writing a small email logging / forwarding script and am having
>problems with the headers. I am successfully getting the MIME-Version and
>Content-type, b
dunno if this helps, but try using "\r\n" instead of just "\n" when you
create $headers
-Original Message-
From: CDitty [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 24, 2002 1:20 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Mail Headers problem...
I am writing a
I am writing a small email logging / forwarding script and am having
problems with the headers. I am successfully getting the MIME-Version and
Content-type, but when I insert them into the forwarded email message, the
headers show within the email itself. Below is the code I am using.
$to = "
Nick,
Thank you for your reply. I have looked at the RFC's and they are just
too wordy without examples. I was hoping to find a nice hyperlinked html
page with complete docs and examples...that may be hoping for too much:).
I'll be using this to generate auto-responding email messages. I'd lik
Can someone tell me where to find documentation on defining mail headers
and formatting? I've been to faqs.org, but was hoping to find something
a bit more friendly.
Steven J. Walker
Walker Effects
www.walkereffects.com
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To u
Hej!
I have a question. I send mail from a php-script with the mail()-function. However the
smtp server I use has a wrong time set. Can I set the sent-time through the headers so
I take my web-servers time? and how then?
Thankfull for help.
/Kalle
I am using the HTML Email Class from Richard Heyes.
Using the sendmail command I want to change the headers on the email
so that the Return-Path is different from the To: data.
The script looks like this:
$mail->send(
$row->firstname,
$row->email,
$newsletter_name,
23 matches
Mail list logo