This module implements the SMTP client protocol as specified by RFC 5321, this can be used to send mail to any SMTP Server.
This module also implements the protocol used to format messages, as specified by RFC 2822.
Example gmail use:
var msg = createMessage("Hello from Nim's SMTP", "Hello!.\n Is this awesome or what?", @["[email protected]"]) let smtpConn = newSmtp(useSsl = true, debug=true) smtpConn.connect("smtp.gmail.com", Port 465) smtpConn.auth("username", "password") smtpConn.sendmail("[email protected]", @["[email protected]"], $msg)
Example for startTls use:
var msg = createMessage("Hello from Nim's SMTP", "Hello!.\n Is this awesome or what?", @["[email protected]"]) let smtpConn = newSmtp(debug=true) smtpConn.connect("smtp.mailtrap.io", Port 2525) smtpConn.startTls() smtpConn.auth("username", "password") smtpConn.sendmail("[email protected]", @["[email protected]"], $msg)
For SSL support this module relies on OpenSSL. If you want to enable SSL, compile with -d:ssl.
Types
AsyncSmtp = SmtpBase[AsyncSocket]
Message = object
ReplyError = object of IOError
Smtp = SmtpBase[Socket]
Procs
proc checkReply(smtp: AsyncSmtp; reply: string): owned(Future[void]) {. ...stackTrace: false, raises: [Exception], tags: [RootEffect], forbids: [].}
-
Calls debugRecv and checks that the received data starts with reply. If the received data does not start with reply, then a QUIT command will be sent to the SMTP server and a ReplyError exception will be raised.
This is a lower level proc and not something that you typically would need to call when using this module. One exception to this is if you are implementing any SMTP extensions.
proc checkReply(smtp: Smtp; reply: string) {. ...raises: [TimeoutError, OSError, SslError, ReplyError], tags: [ReadIOEffect, TimeEffect, WriteIOEffect], forbids: [].}
proc createMessage(mSubject, mBody: string; mTo, mCc: seq[string] = @[]): Message {. ...raises: [], tags: [], forbids: [].}
-
Alternate version of the above.
You need to make sure that mSubject, mTo and mCc don't contain any newline characters. Failing to do so will raise AssertionDefect.
proc createMessage(mSubject, mBody: string; mTo, mCc: seq[string]; otherHeaders: openArray[tuple[name, value: string]]): Message {. ...raises: [], tags: [], forbids: [].}
-
Creates a new MIME compliant message.
You need to make sure that mSubject, mTo and mCc don't contain any newline characters. Failing to do so will raise AssertionDefect.
proc debugRecv(smtp: AsyncSmtp): Future[string] {....stackTrace: false, raises: [Exception, ValueError], tags: [RootEffect], forbids: [].}
-
Receives a line of data from the socket connected to the SMTP server.
If the smtp object was created with debug enabled, debugRecv will invoke echo("S:" & result.string) after the data is received.
This is a lower level proc and not something that you typically would need to call when using this module. One exception to this is if you are implementing any SMTP extensions.
See checkReply(reply).
proc debugSend(smtp: AsyncSmtp; cmd: string): owned(Future[void]) {. ...stackTrace: false, raises: [Exception], tags: [RootEffect], forbids: [].}
-
Sends cmd on the socket connected to the SMTP server.
If the smtp object was created with debug enabled, debugSend will invoke echo("C:" & cmd) before sending.
This is a lower level proc and not something that you typically would need to call when using this module. One exception to this is if you are implementing any SMTP extensions.
proc newAsyncSmtp(useSsl = false; debug = false; sslContext: SslContext = nil): AsyncSmtp {. ...raises: [OSError, SslError, LibraryError, Exception, IOError], tags: [RootEffect, ReadDirEffect, ReadEnvEffect, ReadIOEffect], forbids: [].}
- Creates a new AsyncSmtp instance.
proc sendMail(smtp: AsyncSmtp; fromAddr: string; toAddrs: seq[string]; msg: string): owned(Future[void]) {....stackTrace: false, raises: [Exception], tags: [RootEffect], forbids: [].}
-
Sends msg from fromAddr to the addresses specified in toAddrs. Messages may be formed using createMessage by converting the Message into a string.
You need to make sure that fromAddr and toAddrs don't contain any newline characters. Failing to do so will raise AssertionDefect.