Back to product page

SendFromHtml Method


Sends new text/html message from saved HTML file.

Syntax

  • Basic
object.SendFromHtml (From, To, Subject, Filename)
The SendFromHtml(object,From,To,Subject,Filename) syntax has these parts:
objectAn expression evaluating to an object of type wodSmtp
FromRequired. A String value. Specifies sender of the message.
ToRequired. A String value. Specifies recipient of the message.
SubjectRequired. A String value. Specifies message subject.
FilenameRequired. A String value. Holds filename of saved HTML file template.

Remarks

SendFromHtml method is a one-line-command that can be used in your applications to send email with embedded images based on saved HTML file, with none of extra work. You can use this command immediately after you initialize wodSmtp. Message will be sent until it's delivered, or until RetryCount expires.

No other commands needs to be set for this method to work - except property DNSHostname must not be empty! It is auto-filled by your network settings information when wodSmtp is initialized, but in case wodSmtp is unable to determine your Nameserver IP - you might need to fill it by yourself.

You can also use CreateFromHtml method instead of this one if you don't want your message to be delivered immediately.

If you haven't already Connected to the server using Connect method, SendFromHtml will establish the connection for you, and in that case it will automatically call Disconnect method to after the message is delivered. If Connect method was manually called, wodSmtp will not disconnect, so you can call Reset method and send new message to the same server.

Platforms

Windows