Indy Mail server
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Following is my code for the smtp client for sending email VAR SMTP : TIdSMTP; MSG : TIdmessage; begin MSG:=TIdmessage.Create(NIL); TRY WITH MSG.Recipients.Add DO BEGIN Name:='me025'; Address:='me025@gmail.com' END; MSG.BccList.Add.Address:='me025@yahoo.com'; MSG.From.Name:='self025'; MSG.From.Address:='self025@127.0.1.1'; MSG.Body.Text:='<Message Body>'; MSG.Subject:='<Subject of message>'; SMTP:=TIdSMTP.Create(NIL); TRY SMTP.Host:='127.0.1.1'; // IP Address of SMTP server // 127.0.1.1 SMTP.Port:=25; // Port address of SMTP service (usually