Ne das hängt nicht vom Mailserver ab.
Habs jetzt so gelöst:
Delphi-Quellcode:
Msg.ContentType:='
multipart/alternative';
//War voher 'multipart/mixed'
if Assigned(HTMLText)
then
begin
with TIdText.Create(Msg.MessageParts,HTMLText)
do
begin
ContentType:='
text/html';
ContentTransfer:='
quoted-printable';
end;
if Assigned(Text)
then
begin
with TIdText.Create(Msg.MessageParts,Text)
do
begin
ContentType:='
text/plain';
ContentTransfer:='
quoted-printable';
end;
Das Problem: Wenn ich jetzt die
HTML Mail lese habe ich im Anhang eine ATT00123.txt in der der Plaintext drinsteht. Ist das normal?