Jump to content

Hey its about a sending mail message


pumpas
 Share

Recommended Posts

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 B) ( Using AutoItWiki :o )

Edited by pumpas
Link to comment
Share on other sites

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]

Link to comment
Share on other sites

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.childNodes

if $x.NodeName = "ip" then

$ip = $x.text

endif

next

$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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

B) 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.
Link to comment
Share on other sites

:o 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 B)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...