SMTP
SMTP Specific Information
Email address fields accept both the email addresses and the email address accompanied by the username; for example, "Friendly Name" <[email protected]>
INSERT
When sending mail with either POP or IMAP, SMTP is used to send the message to the mail server.
To send mail, you can insert a row into the table. Required fields are Subject, To, and MessageBody. For example:
INSERT INTO [Inbox] (Subject, MessageBody, To) VALUES ('Test Subject','Body Text','[email protected]')
Additional notes
By default, the From field will be populated with the email address supplied in the account. If it is not a complete email address, be sure to set From before sending a message.