|
SendHTMLMail() 
Enterprise & Corporate Editions Only
Sends the HTML emails pending the email
queue.
Syntax
SendHTMLMail() -->
cMessage
Arguments
None.
Returns
The function returns an empty (blank)
string if the messages were successfully send. Otherwise the return
value is the error message.
Description
This function sends the email messages
pending in the email queue. Use the
AddMail()
function to email all messages pending in the queue. This function
also assumes that the subject body of the email is formatted as
HTML.
Your system will connect to your email
service based on the settings found under the Email Services
Settings within the CAPITAL Office Help File. These settings must
be correctly configured before you will be able to send
emails.
Examples
* Send a HTML Email
Message
Declare cMsg Type
Character
cMsg :=
ReadTextFile("C:\mailings\Promo1.htm")
* Add mail to
queue
AddMail("myself@myaddress.com.au", "This is a HTML
Email", cMsg)
SendHTMLMail()
____________________________
Related Topics
AddMail()
Business
Function List
SendMail()
|