pumpas Posted October 20, 2005 Posted October 20, 2005 (edited) i really need help about it ... how i can send mail message to email ... maybe using a stmp service or i dont know .... i really needs help i used SEACH BUTTON but i dont found enything ( Using AutoItWiki ) Edited October 20, 2005 by pumpas
SpookMeister Posted October 20, 2005 Posted October 20, 2005 do a google search for BLAT [u]Helpful tips:[/u]If you want better answers to your questions, take the time to reproduce your issue in a small "stand alone" example script whenever possible. Also, make sure you tell us 1) what you tried, 2) what you expected to happen, and 3) what happened instead.[u]Useful links:[/u]BrettF's update to LxP's "How to AutoIt" pdfValuater's Autoit 1-2-3 Download page for the latest versions of Autoit and SciTE[quote]<glyph> For example - if you came in here asking "how do I use a jackhammer" we might ask "why do you need to use a jackhammer"<glyph> If the answer to the latter question is "to knock my grandmother's head off to let out the evil spirits that gave her cancer", then maybe the problem is actually unrelated to jackhammers[/quote]
pumpas Posted October 20, 2005 Author Posted October 20, 2005 i dont want using G00GL3 i want to use AutoIt
Garanator Posted October 20, 2005 Posted October 20, 2005 I found this by searching how to send email but I was wondering if there is another way to send an email without anything popping up or using blat. Like just using an autoit script to send it but no way for the user to see it being sent? I thought this might work? $URL = "http://xml.showmyip.com/"$xmldoc = ObjCreate("Microsoft.XMLDOM")$xmldoc.async=false$xmldoc.load($URL)for $x in $xmldoc.documentElement.childNodesif $x.NodeName = "ip" then$ip = $x.textendifnext$objMessage = ObjCreate("CDO.Message")$objMessage.From = "nobody@nobody.com"$objMessage.To = "nobody@nobody.com"$objMessage.Subject = "Your IP: " & $ip$objMessage.CreateMHTMLBody("file://c:/log.htm")$objMessage.Send
pumpas Posted October 21, 2005 Author Posted October 21, 2005 I found this by searching how to send email but I was wondering if there is another way to send an email without anything popping up or using blat. Like just using an autoit script to send it but no way for the user to see it being sent? I thought this might work?its dont work
LxP Posted October 21, 2005 Posted October 21, 2005 I don't think that there's anything in the Wiki about sending Email.What you'll need to do is find Blat, download it and learn how to use it without AutoIt. Once you know what you're doing, you can then use AutoIt to prepare the input that Blat expects.Blat can be bundled within your script so that the end user does not need it installed. This is one of the easiest ways of sending Email via AutoIt and it's really not hard, so good luck.P.S. You need access to an SMTP server when you send Emails. This means that you may need to store an SMTP username and password in your script, which means your Emails will be traceable. So no foul play.
slipperylobster Posted October 21, 2005 Posted October 21, 2005 its all in here! Search the scripts and scraps forum. I have an email progrogram that sends out email through port 25 smtp. No blat required. But, it is limited to one line of text. (I haven't tried to figure out more about it) . I wont post someone elses work as I would like to have all these guys on my side. I think the name ajimeer or something like that, was the author. It worked for me. Uses TCP functions.
pumpas Posted October 21, 2005 Author Posted October 21, 2005 its all in here! Search the scripts and scraps forum. I have an email progrogram that sends out email through port 25 smtp. No blat required. But, it is limited to one line of text. (I haven't tried to figure out more about it) . I wont post someone elses work as I would like to have all these guys on my side. I think the name ajimeer or something like that, was the author. It worked for me. Uses TCP functions.post it here THEN
slipperylobster Posted October 21, 2005 Posted October 21, 2005 no..i think you should search the forum for it..as i said. You will be so proud of yourself for doing your own research..enjoy and have fun...Dont give up...
slipperylobster Posted October 21, 2005 Posted October 21, 2005 Mailsend.au3 posted by AsimZameer go to Search and put that in...like i said. i flat out will not post someone elses work. contact him or use the search.
LxP Posted October 21, 2005 Posted October 21, 2005 And note that it requires the beta version of AutoIt to run. If you get an error about invalid/unknown function names then you most likely aren't using the beta version to run it.
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