Hi, i have create one e-mail with this code:
Dim olApp As Object
Dim olItem As Object
Dim olAttachments As Object
Dim textbody as string
Set olApp = CreateObject("Outlook.Application")
Set olItem = olApp.CreateItem(olMailItem)
Set olAttachments = olItem.Attachments
textbody = "The body of the e-mail"
olAttachments.Add destination, olByValue
olItem.Recipients.Add "inserire@destinatario.it"
olItem.Subject = "Halo"
olItem.Body = textbody
olItem.OriginatorDeliveryReportRequested = False
olItem.ReadReceiptRequested = False
olItem.Send
Set olApp = Nothing
Set olItem = Nothing
In body text i have write one string var (textbody),
but how can i simulate the return command between 2 or 3 string var?
Thanks
Bye
Dim olApp As Object
Dim olItem As Object
Dim olAttachments As Object
Dim textbody as string
Set olApp = CreateObject("Outlook.Application")
Set olItem = olApp.CreateItem(olMailItem)
Set olAttachments = olItem.Attachments
textbody = "The body of the e-mail"
olAttachments.Add destination, olByValue
olItem.Recipients.Add "inserire@destinatario.it"
olItem.Subject = "Halo"
olItem.Body = textbody
olItem.OriginatorDeliveryReportRequested = False
olItem.ReadReceiptRequested = False
olItem.Send
Set olApp = Nothing
Set olItem = Nothing
In body text i have write one string var (textbody),
but how can i simulate the return command between 2 or 3 string var?
Thanks
Bye