|
|
|
|
![]() ![]() |
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 This post has been edited by jlhaslip: Jan 8 2006, 10:04 AM |
|
|
|
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. |
|
|
|
Jan 8 2006, 01:55 PM
Post
#3
|
|
|
apt-get moo ![]() Group: [MODERATOR] Posts: 2,102 Joined: 28-May 05 From: Hertfordshire, England Member No.: 7,593 ![]() |
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. |
|
|
|
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. |
|
|
|
![]() ![]() |
Similar Topics
|
Lo-Fi Version | Time is now: 28th August 2008 - 10:09 AM |