kettavan Posted December 3, 2008 Share Posted December 3, 2008 hi friends, Is there any php mailing script to send batch emails with the following I saw one email which was sent using php . that mail has future time and date . means the received date of the mail was Dec 7 2009. But the actual date was Dec 1. I have seen the source of that mail. It has been sent using php. Is there any script or tricks to do the above. Please help me and give some info about that kind of php mailing... Please.... Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/ Share on other sites More sharing options...
rhodesa Posted December 3, 2008 Share Posted December 3, 2008 <?php $headers = "date: ".date("r",strtotime('2009-12-07')) . "\r\n"; $success=mail('youremail@host.com', 'email subject', 'email message', $headers); ?> Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-705035 Share on other sites More sharing options...
torb Posted December 3, 2008 Share Posted December 3, 2008 Man, the next time I find I'm late for some deadline I am sure as H going to use this and blame my mailserver for the delays Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-705118 Share on other sites More sharing options...
rhodesa Posted December 3, 2008 Share Posted December 3, 2008 Man, the next time I find I'm late for some deadline I am sure as H going to use this and blame my mailserver for the delays lol...if only it changed the REAL date on the email Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-705126 Share on other sites More sharing options...
kettavan Posted December 6, 2008 Author Share Posted December 6, 2008 Is there any ready script available for this ?? One spammer used the following method ?? He says the php mail script can use the system time(what we change to future time)... but he is not ready to tell what is the script name ... So please tel.. is that's possible ??? that script uses (My email client v.1.0) as Mailer...is there any script uses this mailer ??? please help me Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-707847 Share on other sites More sharing options...
rhodesa Posted December 7, 2008 Share Posted December 7, 2008 Is there any ready script available for this ?? One spammer used the following method ?? He says the php mail script can use the system time(what we change to future time)... but he is not ready to tell what is the script name ... So please tel.. is that's possible ??? that script uses (My email client v.1.0) as Mailer...is there any script uses this mailer ??? please help me why do you want to change the time? Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-708564 Share on other sites More sharing options...
kettavan Posted December 9, 2008 Author Share Posted December 9, 2008 In yahoo our mails sorted out on top on a particular day... so do u have any solution for that Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-710384 Share on other sites More sharing options...
rhodesa Posted December 9, 2008 Share Posted December 9, 2008 In yahoo our mails sorted out on top on a particular day... so do u have any solution for that the order of the email is up to the client. i don't have a yahoo account, but i know on gmail, even if you alter the date, it will remain in the order in which it was received. Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-710387 Share on other sites More sharing options...
redarrow Posted December 9, 2008 Share Posted December 9, 2008 You can not forward the email time or date, u can make it look like it been changed, Like what was done below, but in reality the mail server set, the date and time for incoming mail, upon request. Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-710402 Share on other sites More sharing options...
kettavan Posted December 9, 2008 Author Share Posted December 9, 2008 From kettavan@gmail.com 9 Dec 2008 06:33:43 Return-Path: <kettavan@gmail.com> X-Sender: kettavan@gmail.com X-Apparently-To: india@yahoogroups.com X-Received: (qmail 99611 invoked from network); 9 Dec 2008 06:33:43 -0000 X-Received: from unknown (66.218.67.97) by m56.grp.scd.yahoo.com with QMQP; 9 Dec 2008 06:33:43 -0000 X-Received: from unknown (HELO qmail-relay-norm-0.netfirms.com) (38.113.189.170) by mta18.grp.scd.yahoo.com with SMTP; 9 Dec 2008 06:33:43 -0000 X-Received: (qmail 40869 invoked from network); 9 Dec 2008 06:33:41 -0000 X-Received: from unknown (HELO php) (anitha@mydomain.com@210.211.184.190) by q0-relay-norm.netfirms.com with SMTP; 9 Dec 2008 06:33:41 -0000 Message-ID: <01a708a1$39792$01d15023752083@php> To: india@yahoogroups.com Date: Wed, 10 Dec 2008 12:03:28 +0530 MIME-Version: 1.0 Content-Type: text/html Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: My e-mail client v1.0 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3028 X-Originating-IP: 38.113.189.170 X-eGroups-Msg-Info: 2:3:4:0:0 X-eGroups-From: "<<Kettavan>>" <kettavan@gmail.com> From: "<<Kettavan>>" <kettavan@gmail.com> Reply-To: "<<Kettavan>>" <kettavan@gmail.com> Subject: ||> View the ONLY Desktop collectionz || X-Yahoo-Group-Post: member; u=350610639; y=NbpEC-odu9q16z75IiwRVdlemULrvJiF7skvg34aXLSPv3DapWs5ww X-Yahoo-Profile: kettavan See the source of the mail...it sent on 9th dec.. but it has been sent as 10th dec... So how is it possible.. Can i teach me how can i send a mail like this using php..I think thescript getting the time of the system when it was sent. Please help me out Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-710616 Share on other sites More sharing options...
premiso Posted December 9, 2008 Share Posted December 9, 2008 Change the system's time that your php server is setup on. That is the only I can think of to do it. You could do this temporarily with Linux, by using the exec function and just reset it back after the email was sent... Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-710622 Share on other sites More sharing options...
rhodesa Posted December 9, 2008 Share Posted December 9, 2008 The times are the same, just different Time Zones. There is no date/time alteration that i can see on that email Quote Link to comment https://forums.phpfreaks.com/topic/135342-php-mailing-script-with-fake-time-please-help/#findComment-710667 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.