Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Requesting Php Mailing List Script, That isn't detected as Spam
spy_charly
post Jan 8 2006, 05:15 AM
Post #1


Premium Member
********

Group: Members
Posts: 195
Joined: 18-November 05
Member No.: 14,521



hello guys...i was looking for a script that sends mails to my frineds at once or to send like 50 mails at once and i saw that actually fantastico has a script already pre-installed, but it is not as good as i expected it would.

The mails are send as spam and that is not actually a good solution since many companies well ok hotmail deletes that kind of mails, and yahoo! send'em to the spam too. And i never could have the mailing list properly working.

So i would like to have a easier to use script and also that the mails host doesnt think it is all spam and something that could be awsome is to send fully html pages such as the ones i receive from macromedia
thanx in advance

Notice from jlhaslip:
modified topic and added description


This post has been edited by jlhaslip: Jan 8 2006, 10:04 AM
Go to the top of the page
 
+Quote Post
warbird
post Jan 8 2006, 01:19 PM
Post #2


Newbie
*

Group: Members
Posts: 7
Joined: 19-November 05
Member No.: 14,582



I assume you use the PHP function mail(); ??? Your mail will probably end up in the BULK/SPAM folder since it doesn't say who send it. You just used this, didn't you?:

CODE
$to = "someone@somewhere.net";
$subject = "something";
$message = "Dear someone, this is a test of my mail script. Blablabla, blablabla.";

mail($to, $subject, $message)


You should add this header so the spamfilter sees who send it:

CODE
$header = "From: webmaster@" . $_SERVER['SERVER_NAME'] . "\r\n";


So you got this:

CODE
$to = "someone@somewhere.net";
$subject = "something";
$message = "Dear someone, this is a test of my mail script. Blablabla, blablabla.";
$header = "From: webmaster@" . $_SERVER['SERVER_NAME'] . "\r\n";

mail($to, $subject, $message, $header)


Hope this helps. Otherwise you just have to say to your friends that they have to whitelist your domain.

Regards,
Warbird.
Go to the top of the page
 
+Quote Post
rvalkass
post Jan 8 2006, 01:55 PM
Post #3


apt-get moo
Group Icon

Group: [MODERATOR]
Posts: 2,102
Joined: 28-May 05
From: Hertfordshire, England
Member No.: 7,593
Spam Patrol



I wrote a basic mailing list script years ago. I just tested it and it works perfectly on Trap 17. If you want a copy of it then email me or get me on MSN, all my details are in my profile here. It is only one file, but has basic verification, admin functions, user confirmation etc, and also has a simple installer. It currently has no visuals what so ever, as I never had time to create them, another project stopped me, but you could easily customise it to suit your site design.

As Warbird has said, many services don't accept emails if there is no sender, or if other header information is missing, so make sure you include everything.
Go to the top of the page
 
+Quote Post
kvkv
post Jan 30 2006, 05:26 PM
Post #4


Newbie [Level 3]
***

Group: Members
Posts: 40
Joined: 29-January 06
Member No.: 17,841



Hi rvalkass,

I am interested in your mailing list script. I want to know weather it handles mail sent to a group id or it is only a one way script where users can't send mails to list.
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Script: Php Jukebox(4)
  2. Parse: Error Unexpected T_lnumber(4)
  3. Transfer Variables To Another Php Script(8)
  4. Watermark Your Image With Simple Php Script(35)
  5. Script That Tracks The User Status(4)
  6. Wappychat_oldskool(15)
  7. Free Auction Script(6)
  8. Wappy Buddy V1.10 - Tibia Gold Edition By Wappy & Jon Roig(3)
  9. What Kind Of Script Do You Need ?(15)
  10. Creatting A Playlist Through Php(5)
  11. Html Code Tester. Online Script(15)
  12. Php Sessions And Post Variables Issues(1)
  13. Will This Code Work(5)
  14. Php Downloads Script(4)
  15. Script Help Required: Undefined Variable(3)
  1. Script Not Working(6)
  2. Library Script(6)
  3. How Would I Go About Making A Simple "counting" Script?(3)
  4. Forum Script(3)
  5. Php Rediret Script(12)
  6. Download Script For Mp3 Files(0)
  7. How Do I Connect To Live Database With Php Script?(6)
  8. Need Help Installing Dolphin Community Script!(5)
  9. Gahhh This Isn't Going Well Please Help!(12)
  10. Guessing Php Script(2)
  11. How To Make A View New Post Script?(5)
  12. Php Guest Online Script(3)
  13. How To Make Php Newsletter Script(3)


 



- Lo-Fi Version Time is now: 28th August 2008 - 10:09 AM