Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
oMSG = createobject("CDO.Message")
oMSG.To = "jordanbaumgardner@earthlink.net"
oMSG.From = "jordanbaumgardner@earthlink.net"
oMSG.Subject = "Hello Email"
oMSG.HTMLBody = [< b >< P >< FONT COLOR="#CC0000" >Hello In Color< /FONT >< /b >]
oMSG.Send()
#DEFINE MAILITEM 0
#DEFINE IMPORTANCELOW 0
#DEFINE IMPORTANCENORMAL 1
#DEFINE IMPORTANCEHIGH 2
oOutLookObject = CreateObject("Outlook.Application")
oEmailItem = oOutLookObject.CreateItem(MAILITEM)
WITH oEmailItem
.Recipients.Add("moe@3stooges.com")
.Subject = "Automation sample"
.Importance = IMPORTANCENORMAL
.Body = "This is easy!"
.Attachments.Add("c:\mydir\sample.htm")
.Send
ENDWITH
RELEASE oEmailItem
RELEASE oOutLookObject
If you trying to write HTML change the body line above to this
[code]
.Body = [< b >< P >< FONT COLOR="#CC0000" >Hello In Color< /FONT >< /b >]
oMSG = createobject("CDO.Message")
oMSG.To = "mike.gagnon@slpcanada.com"
oMSG.From = "mike.gagnon@slpcanada.com"
oMSG.Subject = "Hello Email"
oMSG.HTMLBody = "<html><body><p>Please plan to present your status for the following projects...</p></body></html>"
oMSG.Send()