| View previous topic :: View next topic |
| Author |
Message |
irfan
Joined: 18 Jul 2008 Posts: 1 Location: MUMBAI
|
Posted: Fri Jul 18, 2008 12:34 pm Post subject: MAILER HELP |
|
|
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 |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1030 Location: switzerland
|
Posted: Fri Jul 18, 2008 1:17 pm Post subject: |
|
|
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 |
|
 |
Help Gary Guest
|
Posted: Fri Jul 18, 2008 1:20 pm Post subject: |
|
|
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
|
Posted: Fri Jul 18, 2008 1:29 pm Post subject: |
|
|
| how can i snd mail to gmail invisibly |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1030 Location: switzerland
|
Posted: Fri Jul 18, 2008 1:51 pm Post subject: |
|
|
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 |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6772 Location: Pacific Northwest, US
|
Posted: Fri Jul 18, 2008 4:39 pm Post subject: |
|
|
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 |
|
 |
Moderator!! Guest
|
Posted: Fri Jul 18, 2008 4:49 pm Post subject: |
|
|
| i agree with engunneer, why the need for stealth mail? |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 1030 Location: switzerland
|
|
| Back to top |
|
 |
Help Needed Guest
|
Posted: Sat Jul 19, 2008 7:59 am Post subject: |
|
|
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
|
Posted: Sat Jul 19, 2008 4:58 pm Post subject: |
|
|
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 |
|
 |
|