Teddy379
Tue Jan 08 05:25:21 PST 2008
On Jan 8, 12:37 am, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Teddy379" <teddy...@gmail.com> wrote in message
>
> news:226b27a3-56e6-4c03-be98-cc0fb942fc3e@m34g2000hsf.googlegroups.com...
>
>
>
> > On Jan 7, 11:54 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >>news:ab4568ef-7769-4812-8efb-4c3d4c53c1d7@d21g2000prf.googlegroups.com...
>
> >> > On Jan 7, 10:52 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >>news:d13edaf4-826a-4704-9570-441700380355@j20g2000hsi.googlegroups.com...
>
> >> >> > On Jan 7, 8:15 pm, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> >> >> >> "Teddy379" <teddy...@gmail.com> wrote in message
>
> >> >> >>news:71b124c4-b414-4ba7-8b04-aa85a9f858e3@c4g2000hsg.googlegroups.com...
>
> >> >> >> > Hello,
> >> >> >> > I have a file that I should be able to access every some days on
> >> >> >> > another computer, how can I access it (like getting it sent to me
> >> >> >> > or
> >> >> >> > something) without using those remote adminsrating programs??
>
> >> >> >> > The whole process should be done automatically without any
> >> >> >> > windows
> >> >> >> > or
> >> >> >> > pop ups...
>
> >> >> >> > How could that be achieved?
>
> >> >> >> > Thanks
>
> >> >> >> You could use the Task Scheduler on the other PC to invoke a
> >> >> >> command line mailer such as blat.exe to send the file to yourself.
> >> >> >> Post again if you need more details.
>
> >> >> > Yeah I'd like more details... thank you..
>
> >> >> Here is a typical batch file to mail a file:
>
> >> >> @ech off
> >> >> set Sender=te...@teddy.com
> >> >> set Receiver=te...@teddy.com
> >> >> set Subject=Teddy's Report %date%
> >> >> set smtp=smtp.teddy.com
>
> >> >> cd 2>"c:\Nullfile"
> >> >> blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> >> %Sender% -server %smtp% -attach "c:\test.xls"
>
> >> >> You can download blat from any number of sites. To send this file to
> >> >> yourself every day, invoke the above batch file with the Task
> >> >> Scheduler.
>
> >> > where shall i put the blat.exe file?
>
> >> If the dog wants a bone, give it a bone!
>
> >> @ech off
> >> set Sender=te...@teddy.com
> >> set Receiver=te...@teddy.com
> >> set Subject=Teddy's Report %date%
> >> set smtp=smtp.teddy.com
> >> set Account=te...@teddy.com
> >> set pw=teddy
>
> >> cd 2>"c:\Nullfile"
> >> c:\Tools\blat.exe "c:\Nullfile" -to %Receiver% -subject "%Subject%" -f
> >> %Sender% -server %smtp% -u %Account% -pw %pw% -attach "c:\test.xls"
>
> >> You can place blat.exe whereever you like, as long as
> >> you tell the batch file where to find it!
>
> > hmm, well I tried typing each line in the cmd.exe but then I reached
> > the cd 2>"c:\Nullfile" it said Access Denied, I tried to change the
> > directory and copy the blat files to the new directory but it didn't
> > work...
>
> It does not matter where that file resides - just select some
> location to which you have full access, and make sure it's
> the same in both places in the batch file.
Well okay, I've tried it again and it didn't work...
I download the blat files, they were 3 files, blat.exe, blat.dll,
blat.lib
I put the 3 files in the C directory, which I have access to it...
I put the file send.bat in the C and also test.txt which sould be sent
as an attachment...
I ran the cmd and I started the send.bat file and that's wot I got:
C:\>send.bat
C:\>set Sender=skyfalcont7@gmail.com
C:\>set Receiver=skyfalcont7@gmail.com
C:\>set Subject=Teddy's Report 08/01/2008
C:\>set smtp=smtp.googlemail.com
C:\>set Account=skyfalcont7@gmail.com
C:\>set pw=******
C:\>cd 2>"c:\"
The system cannot find the path specified.
C:\>c:\blat.exe "c:\" -to skyfalcont7@gmail.com -subject "Teddy's
Report 08/01/2
008" -f
Blat v2.6.2 w/GSS encryption (build : Feb 25 2007 12:06:19)
Blat saw and processed these options, and was confused by the last
one...
Report
Do not understand argument: Report
Win32 console utility to send mail via SMTP or post to usenet via NNTP
by
P.Mendes,M.Neal,G.Vollant,T.Charron,T.Musson,H.Pesonen,A.Donchey,C.Hyde
http://www.blat.net
syntax:
Blat <filename> -to <recipient> [optional switches (see below)]
Blat -SaveSettings -f <sender email addy> -server <server addr>
[-port <port>] [-try <try>] [-profile <profile>]
[-u <login id>] [-pwd <password>]
or
Blat -install <server addr> <sender's addr>
[<try>[<port>[<profile>]]] [-q]
Blat -profile [-delete | "<default>"] [profile1] [profileN] [-q]
Blat -h
C:\>skyfalcont7@gmail.com -server smtp.googlemail.com -u
skyfalcont7@gmail.com -
pw ****** -attach "c:\test.txt"
'skyfalcont7@gmail.com' is not recognized as an internal or external
command,
operable program or batch file.
So wot shall I do now? one another thing, the gmail smtp server needs
authentication enabled... is it enouhg to type in my email and
password only?
Thank you