if NMSMTP2.Connected then  NMSMTP2.Disconnect;
NMSMTP2.Host:='SMTP.163.com';
NMSMTP2.Port:=25;
NMSMTP2.UserID:='fftt999';
NMSMTP2.Connect;
NMSMTP2.PostMessage.FromAddress:='[email protected]';
NMSMTP2.PostMessage.ToAddress.Add('[email protected]');
NMSMTP2.PostMessage.Subject:='dsahgfj';
NMSMTP2.PostMessage.Body.Assign(memo1.Lines);
NMSMTP2.SendMail;
我写的代码如上,但是报错:不能从<[email protected]>发邮件,是怎么回事?