Q
qlx_zxm@163
Unregistered / Unconfirmed
GUEST, unregistred user!
以下是我写的一个邮件发送的小程序,可在调试时会发生错误而无法发送,错误提示大概是无法通过验证之类的,邮箱的名称和密码肯定是正确的,请问会是什么原因
IdSMTP.Host := 'smtp.' + '163.com';
IdSMTP.Username := 'sundykaoqing';
IdSMTP.Password := 'sundy******';
with Msg do
begin
Body.Add(CardNumber + ' 2007年9月12日 11:30');
From.Address := 'sundykaoqing@163.com';
Recipients.EMailAddresses := 'sundykaoqing@163.com';
subject := ' 2007年9月12日 11:30';
priority := mphigh;
end;
try
IdSMTP.Connect(50000);
IdSMTP.Send(Msg);
PN_Main.Caption:=CardNumber+'成功!';
except
PN_Main.Caption:=CardNumber+'失败!请检查网络';
IdSMTP.Disconnect;
ED_CardNumber.Text:='';
exit;
end;
IdSMTP.Disconnect;
IdSMTP.Host := 'smtp.' + '163.com';
IdSMTP.Username := 'sundykaoqing';
IdSMTP.Password := 'sundy******';
with Msg do
begin
Body.Add(CardNumber + ' 2007年9月12日 11:30');
From.Address := 'sundykaoqing@163.com';
Recipients.EMailAddresses := 'sundykaoqing@163.com';
subject := ' 2007年9月12日 11:30';
priority := mphigh;
end;
try
IdSMTP.Connect(50000);
IdSMTP.Send(Msg);
PN_Main.Caption:=CardNumber+'成功!';
except
PN_Main.Caption:=CardNumber+'失败!请检查网络';
IdSMTP.Disconnect;
ED_CardNumber.Text:='';
exit;
end;
IdSMTP.Disconnect;