Please, I am trying to solve this "problem" for more than 12 hours now... and almost getting crazy! I think is impossible send the same e-mail for more than a recipient (destination) at once, using Delphi and Synapse (http://synapse.ararat.cz). Please, someone tell me I am wrong :)
Well, I have a sEmail variable, where I get the e-mails separated by point semicolon (;), just like this:
sEmails := '[email protected];[email protected]';
Here is the code I am using:
dSMTP := TSMTPSend.Create;
dSMsg := TMimeMess.Create;
Try
With dSMsg, Header Do
Begin
Date := Now;
Priority := mp_Normal;
CharsetCode := ISO_8859_1;
From := '[email protected]';
ToList.Delimiter := ';';
ToList.DelimitedText := sEmails;
Subject := 'Message Subject';
dPart := AddPartMultipart('mixed', nil);
AddPartHTML('<h1>Message Text</h1>', dPart);
EncodeMessage;
end;
With dSMTP Do
Begin
TargetHost := 'smtp.gmail.com';
TargetPort := '587';
AutoTLS := True;
UserName := '[email protected]';
Password := 'password';
Try
If Login Then
Begin
If MailFrom('[email protected]', Length('[email protected]')) Then
If MailTo(sEmails) Then MailData(dSMsg.Lines);
Logout;
end;
Except
On E: Exception Do ShowMessage(E.Message);
end;
end;
Finally
dSMsg.Free;
dSMTP.Free;
end;
I already tried like this:
If Login Then
Begin
If MailFrom('[email protected]', Length('[email protected]')) Then
If MailTo(dSMsg.Header.ToList[0]) Then MailData(dSMsg.Lines);
Logout;
end;
... but then only the first e-mail was sent :( Even if add the rest of e-mails in the Header.CCList.
In another test I tried to change point semicolon for comma (,), with same problem...
Please, please, can someone tells what I am doing wrong?
Thank you!
According to the documentation for
SendTo:So something like this should work (but see below, because it doesn't apparently):
It seems that there isn't a way to set multiple email addresses properly in the
SMTPSendcomponent. You have to send each individually. You can, however, do it easier than parsing the addresses yourself, since you've already added them todSMsg.Header.ToListearlier in your code:IMO, the Synapse SMTP support is too low level to use easily unless you specifically need that low level support for some reason. Both Indy (which comes with Delphi pre-installed) and ICS provide much easier implementation of
SMTP, both support both text and HTML emails and MIME-encoded attachments, and both support the TLS needed for working with gmail.