| 222 | } |
| 223 | |
| 224 | SMTPOperation * SMTPAsyncSession::sendMessageOperation(Data * messageData) |
| 225 | { |
| 226 | SMTPSendWithDataOperation * op = new SMTPSendWithDataOperation(); |
| 227 | op->setSession(this); |
| 228 | op->setMessageData(messageData); |
| 229 | return (SMTPOperation *) op->autorelease(); |
| 230 | } |
| 231 | |
| 232 | SMTPOperation * SMTPAsyncSession::sendMessageOperation(Address * from, Array * recipients, |
| 233 | Data * messageData) |