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 

MAILER HELP

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



Joined: 18 Jul 2008
Posts: 1
Location: MUMBAI

PostPosted: Fri Jul 18, 2008 12:34 pm    Post subject: MAILER HELP Reply with quote

I WANT TO HAV A SCRIPT THAT SENDS MY SAVED TXT FILE TO ME VIA GMAIL WTHOUT ASKING ME ANYTHING

PLZ HELP
_________________
``MAVERICK--->>
Back to top
View user's profile Send private message Send e-mail
garry



Joined: 19 Apr 2005
Posts: 1030
Location: switzerland

PostPosted: Fri Jul 18, 2008 1:17 pm    Post subject: Reply with quote

this example creates a text file for test (F2)
it's possible to send text file automatically from your script
Code:
;------- this test script needs vmailer.exe --------------
;Homepage:   http://virdi-software.com
;            http://virdi-software.com/vmailer/desc.shtml
;Forum:      http://forums.virdi-software.com

TO   =garry@networld.com  ;for test your adress
FROM =garry@networld.com  ;your adress
SMTP =mail.networld.com   ;the correct SMTP


F2  =ToSend.txt           ;will be created for test
Head=News Header
CX1 =Hello Garry
DATES=%A_Now%

Filedelete,%F2%
Fileappend,From:GARRY_NEWS`r`nSubject:%Head%`r`n`r`n%CX1%`,`r`n`r`nAtlanta %DATES%`r`n`r`n,%F2%
Fileappend,This is your text line1`r`nThis is line2`r`n`r`nGreetings`,`r`nGarry,%F2%
runwait,vmailer.exe %F2% %SMTP% %TO% %FROM%
ExitApp


second example
Code:
;------- this test script needs vmailer.exe --------------
;Homepage:   http://virdi-software.com
;Forum:      http://forums.virdi-software.com

F2  =c:\ToSend.txt

TO   =garry@networld.com  ;for test your adress
FROM =garry@networld.com  ;your adress
SMTP =mail.networld.com   ;the correct SMTP

Gui,2:add,button,x10 y10 h25 w370 gSEND1,SEND %F2%
Gui,2:show,x100 y50 h50 w400,SEND_VMAILER
return

SEND1:
runwait,vmailer.exe %F2% %SMTP% %TO% %FROM%
msgbox, 262208,VMAILER,%F2% is sent %TO%
ExitApp

2Guiclose:
exitapp

;--------------------------------------------------
; c:\ToSend.txt  your text file to send example
/*
From:GARRY_NEWS
Subject:News Header

Hello Garry,

This is your text line1
This is line2

Greetings,
Garry
*/


Last edited by garry on Fri Jul 18, 2008 1:45 pm; edited 1 time in total
Back to top
View user's profile Send private message
Help Gary
Guest





PostPosted: Fri Jul 18, 2008 1:20 pm    Post subject: Reply with quote

consider my gmail id=GMAILID and password is PASSWORD
then how can i send a txt file in c: drive without any notice
plz help


i cannt understand smtp
Back to top
Help
Guest





PostPosted: Fri Jul 18, 2008 1:29 pm    Post subject: Reply with quote

how can i snd mail to gmail invisibly
Back to top
garry



Joined: 19 Apr 2005
Posts: 1030
Location: switzerland

PostPosted: Fri Jul 18, 2008 1:51 pm    Post subject: Reply with quote

made a second example above
sorry I'll want to try also gmail later , I don't use yet
maybe not possible with SMTP
at the moment I'm connected to bluewin.ch (my provider)
adress example:

FROM =garryXY2[at]bluewin.ch
SMTP =mail.bluewin.ch
Back to top
View user's profile Send private message
engunneer



Joined: 30 Aug 2005
Posts: 6772
Location: Pacific Northwest, US

PostPosted: Fri Jul 18, 2008 4:39 pm    Post subject: Reply with quote

in general, we do not discuss doing an operation like this because it can help people write keyloggers. What is your goal on this project? If you have a legitimate reason, you may find some help.
_________________
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
Moderator!!
Guest





PostPosted: Fri Jul 18, 2008 4:49 pm    Post subject: Reply with quote

i agree with engunneer, why the need for stealth mail?
Back to top
garry



Joined: 19 Apr 2005
Posts: 1030
Location: switzerland

PostPosted: Fri Jul 18, 2008 8:37 pm    Post subject: Reply with quote

sorry , I just used this to send some rss news to my adress, example german :
http://de.autohotkey.com/forum/topic606.html
Back to top
View user's profile Send private message
Help Needed
Guest





PostPosted: Sat Jul 19, 2008 7:59 am    Post subject: Reply with quote

actually most of the time i forget to copy my schedule from my desktop pc to laptop,and hence i cant get my schedule in my office,
thts why
if a system snds me the mail
i can check tht in my office
Back to top
engunneer



Joined: 30 Aug 2005
Posts: 6772
Location: Pacific Northwest, US

PostPosted: Sat Jul 19, 2008 4:58 pm    Post subject: Reply with quote

so how will you trigger it remotely?
If you are not there, then why does it matter if it is invisible?
_________________
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
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