Hallo,
ich krige bei meinem Script eine 50 wieder ![]()
Was mache ich falsch.
Spoiler anzeigen
[autoit]
#include <Inet.au3>
$re = InputBox('Mail send', 'Was willst du senden?')
$s_SmtpServer = "smtp.live.com"
$s_FromName = @UserName
$s_FromAddress = "meine e-mail 2@gmx.de"
$s_ToAddress = "meine e-mail 1@gmx.de"
$s_Subject = "E-mail vom Freund"
$s_UName = "e-mail@hotmail.de"
$s_PWD = "richtiges pw"
Dim $as_Body[2]
$as_Body[0] = $re
$as_Body[1] = "a"
$Response = _INetSmtpMail($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_UName, $s_PWD, $s_Subject, $as_Body)
If @error Then
MsgBox (0,"",@error)
Else
MsgBox (0,"","")
EndIf