Delphi-PRAXiS
Seite 1 von 2  1 2      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Netzwerke (https://www.delphipraxis.net/14-netzwerke/)
-   -   Delphi Email code falsch??? (https://www.delphipraxis.net/5668-email-code-falsch.html)

maximi 15. Jun 2003 12:43


Email code falsch???
 
Hallo!!!
Was ist daran falsch???:

Delphi-Quellcode:
  IdSMTP1.Username := '****';
  IdSMTP1.Password := '****';

  IdSMTP1.Host := 'smtp.mail.yahoo.de';

  IdSMTP1.Connect;
  Inhalt.Add(Edit1.Text);
  Inhalt.Add(Edit2.Text);
  IdSMTP1.Host := 'smtp.mail.yahoo.de';
  dMessage1.Body := inhalt;
  IdSMTP1.Send(IdMessage1);
Ich bekomme keine Mail!!!

[Edit=Sakura]Delphi-TAGS eingefügt :!: MfG[/Edit]

maximi 15. Jun 2003 13:49

Hallo??? Findet keiner den Fehler???

Duffy 15. Jun 2003 13:59

Hallo maximi,
hast Du auch alle anderen Parameter gesetzt? wie From usw.
bye

maximi 15. Jun 2003 15:00

Ja alles ich will einfach nur ne mail schicken!!!

Duffy 15. Jun 2003 15:04

Hallo maximi,
leg doch mal den gesamten Quelltext ins Netz. Vielleicht geht es dann einfacher. Falls Du es willst?
bye

maximi 15. Jun 2003 15:09

So vielleicht kann mir ja jetzt jemand weiterhelfen???

Delphi-Quellcode:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,
  IdFTP, StdCtrls, IdUDPBase, IdUDPClient, IdTrivialFTP, IdTCPServer,
  IdFTPServer, Sockets, IdMessageClient, IdPOP3, IdSMTP, IdNNTP,IdMessage;

type
  TForm1 = class(TForm)
    IdFTP1: TIdFTP;
    Edit1: TEdit;
    Edit2: TEdit;
    Label1: TLabel;
    Label2: TLabel;
    Button2: TButton;
    Button3: TButton;
    ListBox1: TListBox;
    IdSMTP1: TIdSMTP;
    IdMessage1: TIdMessage;
    procedure FormCreate(Sender: TObject);
    procedure Button3Click(Sender: TObject);

  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;

var
  Form1: TForm1;
  Inhalt:TStringList;
implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
  Inhalt := TStringList.Create;
  IdFTP1.Host := '*****';

  IdFTP1.Username:='*****';
  IdFTP1.Password:='*******';
  IdFTP1.Connect;
  IdFTP1.Login;
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
  IdFTP1.List(listbox1.items,'/'+Edit1.Text,true);

   if(listbox1.Items.Text = '') then
   begin
  IdSMTP1.Username := '********';
  IdSMTP1.Password := '*****';
  IdSMTP1.Host := 'smtp.mail.yahoo.de';
  IdSMTP1.Connect;

  Inhalt.Add(Edit1.Text);
  Inhalt.Add(Edit2.Text);
  IdMessage1.Body := inhalt;
  ShowMessage('Du wurdest registriert');
  IdSMTP1.Send(IdMessage1);

  IdFTP1.MakeDir(Edit1.Text);

  Inhalt.SaveToFile('c:\'+Edit1.Text+'.txt');
  IdFTP1.Put('c:\'+Edit1.Text+'.txt',
  ExtractFileName(Edit1.Text+'/'+Edit1.Text+'.txt'));
  deletefile('c:\'+Edit1.text+'.txt');
  end;

end;

end.

Duffy 15. Jun 2003 15:30

Hallo maximi,
ich fürchte, daß Du den Emfpänger oder den Absender nicht richtig setzt, sodaß der Mailserver die Mail ablehnt.
bye

maximi 15. Jun 2003 15:36

Bei Username muss doch die email adresse hin???
Ich habe Port jetzt nicht reingebracht, ist das schlimm???

Duffy 15. Jun 2003 15:40

Hallo maximi,
nein, bei Username ist der Benutzername des Mailservers gemeint. Du mußt die Adressen in IdMessage setzen. Empfänger = Recipient, From = From usw.
bye

maximi 15. Jun 2003 15:42

Benutzername des Mailservers??? hä???


Alle Zeitangaben in WEZ +1. Es ist jetzt 01:23 Uhr.
Seite 1 von 2  1 2      

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz