Merge pull request #73 from mabrand/fix2
remove stray space after colon following MAIL FROM and RCPT TO
This commit is contained in:
commit
f715bb9916
@ -353,7 +353,7 @@ bool SmtpClient::sendMail(MimeMessage& email)
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Send the MAIL command with the sender
|
// Send the MAIL command with the sender
|
||||||
sendMessage("MAIL FROM: <" + email.getSender().getAddress() + ">");
|
sendMessage("MAIL FROM:<" + email.getSender().getAddress() + ">");
|
||||||
|
|
||||||
waitForResponse();
|
waitForResponse();
|
||||||
|
|
||||||
@ -386,7 +386,7 @@ bool SmtpClient::sendMail(MimeMessage& email)
|
|||||||
for (it = email.getRecipients(MimeMessage::Bcc).begin(), itEnd = email.getRecipients(MimeMessage::Bcc).end();
|
for (it = email.getRecipients(MimeMessage::Bcc).begin(), itEnd = email.getRecipients(MimeMessage::Bcc).end();
|
||||||
it != itEnd; ++it)
|
it != itEnd; ++it)
|
||||||
{
|
{
|
||||||
sendMessage("RCPT TO: <" + (*it)->getAddress() + ">");
|
sendMessage("RCPT TO:<" + (*it)->getAddress() + ">");
|
||||||
waitForResponse();
|
waitForResponse();
|
||||||
|
|
||||||
if (responseCode != 250) return false;
|
if (responseCode != 250) return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user