-
Posts
29 -
Joined
-
Last visited
Everything posted by Him
-
It WORKS!!!! Thanks a lot!
-
I tried this: CODE$smtpserver = "mail.bluebottle.com" $smtpuser = "user@bluebottle.com" $smtppass = "pass" $e_Sender = "user@bluebottle.com" $e_Recipient = "user@hotmail.com" $e_Subject = "hello" $e_Text = "HI" $e_File = "" ; use the function here! Func SendEmail($e_Sender, $e_Recipient, $e_Subject, $e_Text,$e_File) $objMessage = ObjCreate ("CDO.Message") With $objMessage .Subject = $e_Subject .Sender = $e_Sender .From = $e_Sender .To = $e_Recipient .TextBody = $e_Text ;.HtmlBody = $e_Text ; uncomment to send a HTML mail and comment line above .AddAttachment = $e_File EndWith With $objMessage.Configuration.Fields .Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 .Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = $smtpserver .Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 .Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") = $smtpuser .Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = $smtppass .Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 587 .Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 .Update EndWith $objMessage.Send Return EndFunc And it does't work. Any suggestions? [Any gmail invitation then!?]
-
I need a smtp server to connect and sent the email (like mail.google.com or whatever). Do you know anything worthing to try? I searched the internet and found some but they don't seem to work. Can you also show me a working code? Thanks!
-
Hi, I created an account at BlueBottle.com and I tried to send an email using different scripts that I found in this forum. Can someone suggest me any REALLY WORKING Smtp server (I don't have gmail account) any a REALLY WORKING - SIMPLE example script? Thanks in advance...
-
Hi, I have written a chat programme and I'd like to send a file from client to server. Can this be done under autoit?
-
Hi everyone, I wonder if I can use _INetSmtpMail with a hotmail or yahoo smtpserver? Is that possible? If yes could someone post a simple and WORKING script? Thanks...
-
Hi, I have written a script that encrypts text files. I'd like to make the explorer show (to the right click menu) a shortcut to my script when I right click a .txt file. Is this possible?
-
Hi, I just found this guide searching the web and wanted to share it... Here's the link: http://www.allapi.net/agnet/apiguide.shtml
-
It doesn't work. Try it yourself to get an idea.Without that 'languageID' part the script runs exellent. On the other hand, with that 'languageID' part working, it would be better... Happy xmas...
-
Well, it doesn't work either. I think that something's wrong with the command: $oSp.LanguageID = Dec(0x0409) Any ideas?
-
Unfortunately it doesn't work too
-
help anyone?
-
Well, consider it as a small step to a more reliable beta security program. I can gain access to any computer ,at the most internet cafes of my area, just by restarting and running taskmgr.exe. I'm sure you can do it too. That's what I'm tring to avoid here...
-
Disabling the task manager is not the solution cause after ta input of a correct password, someone could delete the compiled script at C:\program files\myscript.exe or delete the registry entries that autostart it. So i want this program to run as a systems' program that cannot be terminated, I think it's the safest way... Happy new year...!!!
-
I found this script in this forum but $oSp.LanguageID = DEC(0409) don't work. The full script is: $Text = InputBox("Text", "Type text to say", "") $oSp = ObjCreate("SAPI.SpVoice") $oSp.LanguageID = DEC(0409) ;hex 0409 is english... $oSp.Speak($Text) I get the message: the requested action with that object has failed but it works when: $Text = InputBox("Text", "Type text to say", "") $oSp = ObjCreate("SAPI.SpVoice") $oSp.Speak($Text) Anybody can help? I want to use $oSp.LanguageID = DEC(408) ;hex 408 is greek...
-
Any other ideas?
-
Can anybody help? is this possible with autoit?
-
My family owns an internet cafe and I had the idea to make this program for security.It will prevent users that have not been given a password from using a PC. Can you help me?
-
I wrote a script that autostarts. I want to make my script not to be able to be terminated from the task manager. I want it to be terminated when i input a password. Is this possible? Thanks
-
No, I want this programme to be able to be installed ONLY if the user has admin rights. However a user may obtain somehow the admin password and log in as admin. In that case he won't possess the floppy disk with the password to terminate my program and enable input...
-
Security reasons only
-
Hi, I made a programme that checks if the user has admin rights and (if yes) it autostarts at next reboot, blocks input, prevents taskmgr.exe from running and asks for a floopy disk with a password to enable input and taskmgr. I want this programme not to be able to be terminated from the TaskMgr or be deleted. Is this possible under AutoIt? Thanks...
-
I want to write data to the end of the file and read it later. It could start for instance $x = "HLGEGJKASDFHGQJKWHT789T3KIU5Y73QTGUIAWHI" My programme will find $x in the file and will read from $x to the end and display it.
-
I'd like to input some comments to any file and read them using my program. for example input the lyric of a song to an wav file and read them later using my programme. Is this possible? Thanks in advance!