Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > AutoIt
You last visited: Today at 07:02

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



txt file zu schicken lassen

Discussion on txt file zu schicken lassen within the AutoIt forum part of the Coders Den category.

Reply
 
Old   #1
 
VRF's Avatar
 
elite*gold: 185
Join Date: May 2009
Posts: 1,389
Received Thanks: 197
txt file zu schicken lassen

Die frage steht noch!

hay leute,
ich suche nache einer möglichkeit mir eine txt datei von einem anderen pc auf meinen zu senden (als email oder so). Das ganze sollte dann in einen bereits von mir gemacht skript eingebaut werden. Er sollte die datei auch öfters schicken können nach einer bestimmten zeit.
VRF is offline  
Thanks
1 User
Old 11/04/2009, 17:45   #2
 
unknown661's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 314
Received Thanks: 160
hab die function am rechner rumliegen gehabt, habs nie mit attachments getestet... aber vllt fängst du ja was damit an

PHP Code:
Func _INetSmtpMailCom($s_SmtpServer$s_FromName$s_FromAddress$s_ToAddress$s_Subject ""$as_Body ""$s_AttachFiles ""$s_CcAddress ""$s_BccAddress ""$s_Username ""$s_Password "",$IPPort=25$ssl=0)
    
$objEmail ObjCreate("CDO.Message")
    
$objEmail.From '"' $s_FromName '" <' $s_FromAddress '>'
    
$objEmail.To $s_ToAddress
    Local $i_Error 
0
    Local $i_Error_desciption 
""
    
If $s_CcAddress <> "" Then $objEmail.Cc $s_CcAddress
    
If $s_BccAddress <> "" Then $objEmail.Bcc $s_BccAddress
    $objEmail
.Subject $s_Subject
    
If StringInStr($as_Body,"<") and StringInStr($as_Body,">"Then
        $objEmail
.HTMLBody $as_Body
    
Else
        
$objEmail.Textbody $as_Body & @CRLF
    
EndIf
    If 
$s_AttachFiles <> "" Then
        Local $S_Files2Attach 
StringSplit($s_AttachFiles";")
        For 
$x 1 To $S_Files2Attach[0]
            
$S_Files2Attach[$x] = _PathFull ($S_Files2Attach[$x])
            If 
FileExists($S_Files2Attach[$x]) Then
                $objEmail
.AddAttachment ($S_Files2Attach[$x])
            Else
                
$i_Error_desciption $i_Error_desciption & @lf 'File not found to attach: ' $S_Files2Attach[$x]
                
SetError(1)
                return 
0
            
EndIf
        
Next
    
EndIf
    
$objEmail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    $objEmail
.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = $s_SmtpServer
    $objEmail
.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = $IPPort
;Authenticated SMTP
    
If $s_Username <> "" Then
        $objEmail
.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
        $objEmail
.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") = $s_Username
        $objEmail
.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = $s_Password
    
EndIf
    If 
$Ssl Then
        $objEmail
.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True
    
EndIf
;
Update settings
    $objEmail
.Configuration.Fields.Update
Sent the Message
    $objEmail
.Send
    
if @error then
        SetError
(2)
        return 
$oMyRet[1]
    EndIf
EndFunc ;==>_INetSmtpMailCom 
unknown661 is offline  
Thanks
1 User
Old 11/04/2009, 18:02   #3
 
VRF's Avatar
 
elite*gold: 185
Join Date: May 2009
Posts: 1,389
Received Thanks: 197
ok thx erstmal,
also wenn ich dass richtig verstanden habe schickt ne email aber wohin wird diese geschickt, wie kann ich aussuchen was geschickt wird??
VRF is offline  
Old 11/04/2009, 18:15   #4
 
unknown661's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 314
Received Thanks: 160
siehe übergabeparameter

->
PHP Code:
$s_SmtpServer$s_FromName$s_FromAddress$s_ToAddress$s_Subject ""$as_Body ""$s_AttachFiles ""$s_CcAddress ""$s_BccAddress ""$s_Username ""$s_Password "",$IPPort=25$ssl=
unknown661 is offline  
Thanks
1 User
Old 11/04/2009, 18:42   #5
 
VRF's Avatar
 
elite*gold: 185
Join Date: May 2009
Posts: 1,389
Received Thanks: 197
ahja ... sry ich check das irgentwie nich so richtin... könntest du ein beispiel dazu machen oder so?
VRF is offline  
Old 11/04/2009, 18:57   #6
 
unknown661's Avatar
 
elite*gold: 0
Join Date: Oct 2008
Posts: 314
Received Thanks: 160
PHP Code:
_INetSmtpMailCom("mail.gmx.net""max mustermann""""empfä""Betreff""textkörper""""""""emailLoginName""emailPasswort"251
statt mail.gmx.net musst du halt den jeweiligen smtp server angeben und den empfänger musst du auch ändern sowie emailLoginName und emailPasswort
unknown661 is offline  
Thanks
1 User
Old 11/04/2009, 19:12   #7
 
VRF's Avatar
 
elite*gold: 185
Join Date: May 2009
Posts: 1,389
Received Thanks: 197
achso
Danke jetz hab ichs begriffen
aber es funktioniert nicht... gibts nich ne andre möglichkeit?? über icq skype oder so???
VRF is offline  
Old 11/09/2009, 13:47   #8
 
VRF's Avatar
 
elite*gold: 185
Join Date: May 2009
Posts: 1,389
Received Thanks: 197
Hat niemand ne idee??
VRF is offline  
Reply


Similar Threads Similar Threads
anyone post here the file of editing file.. the .edf file
07/13/2013 - RF Online - 3 Replies
please post here... so that i can download again.. i guess the old one thread was gone.. i've been search for an hour in this section.. but i can't see it... thanks..
Über Npc Nachricht schicken lassen
11/18/2009 - Metin2 Private Server - 16 Replies
Hallo Community Habe mal was versucht und zwar soll ein npc für mich Nachrichten in den Chat schicken da es immer nervt /n und dann den txt eingeben zu müssen. Hier mal was ich versucht habe aber es klappt net da man den NPC net anklicken kann. wäre um jede hilfe dankbar wenn mir jemand sagen kann wo der fehler ist oder mir es fertig macht so das es funkt der bekommt von mir nen fettes THX



All times are GMT +1. The time now is 07:02.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.