=sinister= Posted September 4, 2007 Share Posted September 4, 2007 What i ment was to be able to reply to the messages. For me, I just need to find a way to receive incoming reply, and read them too. Link to comment Share on other sites More sharing options...
ConsultingJoe Posted September 5, 2007 Author Share Posted September 5, 2007 What i ment was to be able to reply to the messages. For me, I just need to find a way to receive incoming reply, and read them too.Well, when the new version on the first post is bug free you should be able to just check your email for replys Check out ConsultingJoe.com Link to comment Share on other sites More sharing options...
=sinister= Posted September 22, 2007 Share Posted September 22, 2007 Hey CyberZeroCool, Could you please share the php file you use to send the emails please? Link to comment Share on other sites More sharing options...
ConsultingJoe Posted September 22, 2007 Author Share Posted September 22, 2007 Hey CyberZeroCool,Could you please share the php file you use to send the emails please?there is no php. there used to be but the site that it used is down and i dont have it.google "email php" Check out ConsultingJoe.com Link to comment Share on other sites More sharing options...
=sinister= Posted September 22, 2007 Share Posted September 22, 2007 I emailed email.php but couldn't find exactly what I was looking for, but I know basic php so I think I could be able to put something together. When I use your script it says it connects to the php file with these headers: (Or whatever there called. These things: email.php?name=blabla and so on) Name= Username= carrier= message= Submit=Send I'm not sure where all this takes place in the php file. So far I have this: <?php $to = $_GET["number"] . $_GET["carrier"]; $subject = _$Get["username"]; $body = _$Get["message"]; if (mail($to, $subject, $body)) { echo("<p>Message successfully sent!</p>"); } else { echo("<p>Message delivery failed...</p>"); } ?> I just through this together. do you think this would work? Link to comment Share on other sites More sharing options...
AlmarM Posted September 22, 2007 Share Posted September 22, 2007 Sending Free SMS's ??? And whats with the Company ?? Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes. Link to comment Share on other sites More sharing options...
=sinister= Posted September 22, 2007 Share Posted September 22, 2007 @Almar, huh @CyberZeroCool, My head is about to busrt! I just don't understand all this php stuff. Could you please help me out? So far I have: <?php $EmailFrom = $_GET['From']; $EmailTo = $_GET['To']; $Subject = $_GET['Subject']; $Body = Trim(stripslashes($_GET['Message'])); $success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>"); if ($success){ echo("Mail Successfully Sent!"); } else{ echo("Error Sending Mail."); } ?> and for autoit: Func email( $from, $to, $carrier, $msg, $subject, $html = 0 ) $soc = _HTTPConnect("www.******.com") $data = "To=" & $to & $carrier & "&From=" & $from & "&Subject=" & $subject & "&Message=" & $msg _HTTPPost("www.******.com", "/*******.php", $soc, $data) If Not @error Then $return = 1 Else $return = 0 EndIf _HTTPClose($soc) Return $return EndFunc but it's not working. Can you help me out please? Link to comment Share on other sites More sharing options...
ConsultingJoe Posted September 22, 2007 Author Share Posted September 22, 2007 I emailed email.php but couldn't find exactly what I was looking for, but I know basic php so I think I could be able to put something together.When I use your script it says it connects to the php file with these headers: (Or whatever there called. These things: email.php?name=blabla and so on)Name=Username=carrier=message=Submit=SendI'm not sure where all this takes place in the php file.So far I have this:<?php $to = $_GET["number"] . $_GET["carrier"]; $subject = _$Get["username"]; $body = _$Get["message"]; if (mail($to, $subject, $body)) { echo("<p>Message successfully sent!</p>"); } else { echo("<p>Message delivery failed...</p>"); } ?>I just through this together. do you think this would work?yeah it looks ok Check out ConsultingJoe.com Link to comment Share on other sites More sharing options...
=sinister= Posted September 22, 2007 Share Posted September 22, 2007 how come there is a carrer header in your autoit script? Link to comment Share on other sites More sharing options...
ConsultingJoe Posted September 22, 2007 Author Share Posted September 22, 2007 This entire thing basically sends an email to the carriers domain with the phone number as the address. Check out ConsultingJoe.com Link to comment Share on other sites More sharing options...
=sinister= Posted September 22, 2007 Share Posted September 22, 2007 Hrm, well I lack php knowledge, and can't get it to work. Will you ever rewrite the php file and get it working again? Link to comment Share on other sites More sharing options...
Ibrahim Posted September 22, 2007 Share Posted September 22, 2007 got any carriers for Egypt? [font="Arial Black"]My Stuff[/font]UPnP Port Forwarding Final.GateWay InformationThe GateWay Watcher(detect speeofing)Rightclick Any file --->Hide/UnhideThe Tip WatcherA PanelShare WatcherThe Arp WatcherThe Online License Checker Link to comment Share on other sites More sharing options...
ConsultingJoe Posted September 22, 2007 Author Share Posted September 22, 2007 got any carriers for Egypt?just let me know what carriers you need Check out ConsultingJoe.com Link to comment Share on other sites More sharing options...
=sinister= Posted September 23, 2007 Share Posted September 23, 2007 SendMail.php <?php $EmailFrom = $_POST['From']; $EmailTo =$_POST['To']; $Subject = "SMS"; $Message = $_POST['Message']; $success = mail($EmailTo, $Subject, $Message, "From: <$EmailFrom>"); if ($success){ echo "Mail Success!"; } else{ echo "Mail Failure."; } ?> SMS.au3 Func _SMS($From, $To, $Carrier, $Message) $Socket = _HTTPConnect("WWW.YOUSITE.COM") $Data = "To=" & $To & $Carrier & "&From=" & $From & "&Message=" & $Message _HTTPPost("WWW.YOURSITE.COM", "/folder/SENDMAIL.PHP", $Socket, $Data) If Not @Error Then $Return = 1 Else $Return = 0 EndIf _HTTPClose($Socket) Return $Return EndFunc Figuerd it out =P Finally! Link to comment Share on other sites More sharing options...
ConsultingJoe Posted September 23, 2007 Author Share Posted September 23, 2007 looks cool. let me know where it is, i wana try. Check out ConsultingJoe.com Link to comment Share on other sites More sharing options...
AlmarM Posted September 23, 2007 Share Posted September 23, 2007 Sending Free SMS's ???And whats with the Company ??I mean... Can u send free SMS's (Like at a cellphone... that kinda SMS's)And whats with the company ?? How I know what I sould choose?? Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes. Link to comment Share on other sites More sharing options...
Fossil Rock Posted September 23, 2007 Share Posted September 23, 2007 I mean... Can u send free SMS's (Like at a cellphone... that kinda SMS's)And whats with the company ?? How I know what I sould choose??Post #11 Agreement is not necessary - thinking for one's self is! Link to comment Share on other sites More sharing options...
Ibrahim Posted September 25, 2007 Share Posted September 25, 2007 I need carriers like Vodafone Egypt, Mobinile, Etsalat. [font="Arial Black"]My Stuff[/font]UPnP Port Forwarding Final.GateWay InformationThe GateWay Watcher(detect speeofing)Rightclick Any file --->Hide/UnhideThe Tip WatcherA PanelShare WatcherThe Arp WatcherThe Online License Checker Link to comment Share on other sites More sharing options...
ConsultingJoe Posted September 25, 2007 Author Share Posted September 25, 2007 I need carriers like Vodafone Egypt, Mobinile, Etsalat.You should be able to add these to your SMTP.ininumber@sms.vodafone.egnumber@mobinil.comnumber@email2sms.aeI'm not sure if they work, but give them a try. Check out ConsultingJoe.com Link to comment Share on other sites More sharing options...
Ibrahim Posted September 25, 2007 Share Posted September 25, 2007 message FAILD [font="Arial Black"]My Stuff[/font]UPnP Port Forwarding Final.GateWay InformationThe GateWay Watcher(detect speeofing)Rightclick Any file --->Hide/UnhideThe Tip WatcherA PanelShare WatcherThe Arp WatcherThe Online License Checker Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now