Einzelnen Beitrag anzeigen

Synonym
(Gast)

n/a Beiträge
 
#2

Re: Email über php Script versenden

  Alt 8. Feb 2004, 11:50
So:

PHP Script!
Code:
mail("webmaster@domain.de","Synonym","
[B]Hallo,[/B]


Dies ist eine eMail, die mit PHP geschickt wurde.",
"From: Beispiel-Name <test@test.de>
Bcc: [email]kopie@kopie.de[/email]
Content-Type: text/html");

und dann hiermit senden!
Delphi-Quellcode:
uses IdMultipartFormData;

{ .... }

procedure TForm1.Button1Click(Sender: TObject);
var
  data: TIdMultiPartFormDataStream;
begin
  data := TIdMultiPartFormDataStream.Create;
  try
    { add the used parameters for the script }
    data.AddFormField('param1', 'value1');
    data.AddFormField('param2', 'value2');
    data.AddFormField('param3', 'value3');

    { Call the Post method of TIdHTTP and read the result into TMemo }
    Memo1.Lines.Text := IdHTTP1.Post('http://localhost/script.php', data);
  finally
    data.Free;
  end;
end;
gruß

synonym
  Mit Zitat antworten Zitat