K
Kent
Unregistered / Unconfirmed
GUEST, unregistred user!
就这么一段代码:
if NMSMTP1.Connected = False then
NMSMTP1.Connect;
NMSMTP1.PostMessage.FromAddress := From_Address;
NMSMTP1.PostMessage.FromName := 'aaa';
NMSMTP1.PostMessage.Subject := Mail_Subject;
NMSMTP1.PostMessage.ToAddress.Clear;
RichEdit1.Lines.Add(Mail_Subject);
NMSMTP1.PostMessage.ToAddress.Add(Attack_Target);
NMSMTP1.PostMessage.Body.Clear;
NMSMTP1.PostMessage.Body.Assign(form7.memo1.lines);
For i:=1 to Mail_Attack_Time do
begin
NMSMTP1.SendMail;
end;
NMSMTP1.Disonnect;
运行时出错,什么"503 bad sequences of commands",是我程序有问题吗?
if NMSMTP1.Connected = False then
NMSMTP1.Connect;
NMSMTP1.PostMessage.FromAddress := From_Address;
NMSMTP1.PostMessage.FromName := 'aaa';
NMSMTP1.PostMessage.Subject := Mail_Subject;
NMSMTP1.PostMessage.ToAddress.Clear;
RichEdit1.Lines.Add(Mail_Subject);
NMSMTP1.PostMessage.ToAddress.Add(Attack_Target);
NMSMTP1.PostMessage.Body.Clear;
NMSMTP1.PostMessage.Body.Assign(form7.memo1.lines);
For i:=1 to Mail_Attack_Time do
begin
NMSMTP1.SendMail;
end;
NMSMTP1.Disonnect;
运行时出错,什么"503 bad sequences of commands",是我程序有问题吗?