![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Mar 2005
Posts: 3
Rep Power: 0
![]() |
[Solved] Auto-Mailer for my site; Need some help
Okay, I can set up the basic email script to send an email out to people on my list, but for some reason with Yahoo.com the emails are being sent to the Bulk folder as "Spam."
How do I send an authentic mail automatically from my site? Basic email script: <?php $to = "you@yoursite.com"; $subject = "The subject line"; $message = 'The Message'; $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers .= "From: me@mysite.com\r\n"; mail($to, $subject, $message, $headers) or print "could not send mail"; ?> How do I send a real/trusted email? (It will eventually pull emails out of my database and email them a week before I need them to do something. The script needs to keep track of time of when to shoot off the emails.) Last edited by VillageVineyard; Apr 4th, 2005 at 3:47 PM. |
|
|
|
|
|
#2 |
|
Programmer
Join Date: Jan 2005
Location: Bayamon, Puerto Rico
Posts: 71
Rep Power: 4
![]() |
Ok... read the parameters in this site... click here to view site
__________________
"God bless u all" :) |
|
|
|
|
|
#3 |
|
Newbie
Join Date: Mar 2005
Posts: 3
Rep Power: 0
![]() |
I didn't realize Yahoo required the 'Reply-To:' parameter.
That was the problem. Thanks. |
|
|
|
|
|
#4 |
|
Programmer
Join Date: Jan 2005
Location: Bayamon, Puerto Rico
Posts: 71
Rep Power: 4
![]() |
Glad to know that you solve it... thanks for the info 2
-codetaino
__________________
"God bless u all" :) |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|