|
Posted by Kevin Raleigh on 05/28/07 06:22
"peter" <submit@flexiwebhost.com> wrote in message
news:f3bs00$vtn$1@aioe.org...
> >I am just starting out and working with a tutorial on php mail
> > I used this to send mail but didn't receive anything in my mail
> > Sould I be looking to setup something in PHP 5.0 to fix this problem?
> >
> > <?php
> > $file_loc = "mydata.txt";
> > $whattoread = fopen($file_loc, "r");
> >
> > $file_contents = fread($whattoread, filesize($file_loc));
> > fclose($whattoread);
> >
> > $mailheaders = "From: my web site <> ";
> > mail("kraleigh@sbcglobal.net", "File contents", $file_contents,
> > $mailheaders);
> > echo ("check your mail");
> >
> >
> > ?>
> >
>
> Going by your other post you are using a windows box. You will need to
edit
> the php.ini file and enable/change the smtp configuration. Also try
sending
> an email without any headers etc and a generic title and content.
>
> In your example code you have not put any newlines after the header (\r\n)
> but if you do as I suggested first you will ensure that the setup is
correct
> before bringing in complications.
>
I reloaded my php 5.0 .exe and checked smtp and pop so that they would load
When I checked my php.ini file I don't have a .dll for smtp listed. Is this
a problem?
I was able to send the email message after repairing the things you pointed
out, but
I still can't receive the email I am sending.
You mentioned (\r\n) and not sending headers
I removed the header and received an error message stating that It needed a
header.
can you advise further
Kevin Raleigh
Navigation:
[Reply to this message]
|