Board index » delphi » Feature request on TIdSMTP
Bas Gooijen
![]() Delphi Developer |
Mon, 04 Oct 2004 17:50:24 GMT
|
Bas Gooijen
![]() Delphi Developer |
Mon, 04 Oct 2004 17:50:24 GMT
Feature request on TIdSMTP
i would like to see the posibility to send a TIdMessage to other users than
specified in the message. therefore the send-method needs to be changed to procedure TIdSMTP.Send(AMsg: TIdMessage; const MsgTo:string=''); ( if msgTo=nil then ) thank you, Bas Gooijen |
Ernst Gerlac
![]() Delphi Developer |
Tue, 05 Oct 2004 02:23:26 GMT
Re:Feature request on TIdSMTPWHY ???? "Bas Gooijen" <bas_gooi...@yahoo.com> schrieb im Newsbeitrag news:3cbe96e0$1_1@dnews... Quote> i would like to see the posibility to send a TIdMessage to other users |
Bas Gooije
![]() Delphi Developer |
Tue, 05 Oct 2004 06:38:07 GMT
Re:Feature request on TIdSMTPbecourse it then would be possible to relay or forward a message, without changing it. -- Bas Gooijen Quote"Ernst Gerlach" <ernst.gerl...@epost.de> wrote in message Quote> WHY ???? |
Ernst Gerlac
![]() Delphi Developer |
Tue, 05 Oct 2004 16:24:21 GMT
Re:Feature request on TIdSMTP"Bas Gooijen" <bas_gooi...@yahoo.com> schrieb im Newsbeitrag news:3cbf4acf$1_2@dnews... Quote> becourse it then would be possible to relay or forward a message, without The TidMessage and Tidsmtp is not designed to do so.: ------------------------------------ unit IdServSMTPCli; interface uses type public constructor Create(AOwner: TComponent); override; Quote} public implementation {uses { TidNNTP } constructor TidNNTPGe.Create(AOwner: TComponent); destructor TidNNTPGe.Destroy; function TidNNTPGe.SelectGroupGe(const AGroup: string) : boolean; { TIdSMTP } constructor TIdServSMTPCli.Create(AOwner: TComponent); destructor TIdServSMTPCli.Destroy; function TIdServSMTPCli.SendX: integer; procedure WriteRecipient ( const AEmailAddress: String ); procedure WriteRecipients(AList: TStrings); Function NeedToAuthenticate : Boolean; begin end. regards Ernst Gerlach |