How to use the PB in Microsoft Outlook to send an e-mail
Submitted by Alin Paraschiv
No Comment
To achieve this function, simply write the following:
ls_outlook chain ls_attach, ls_addressee, ls_run_string, ls_path
/ / Microsoft Outlook program where the safety of the road
ls_outlook = “C: Program FilesMicrosoft OfficeOfficeoutlook.exe”
/ / E-mail address
ls_addressee = “ferryman@163.net”
/ / Add attachments
ls_attach = “c: test.txt”
/ / Generates a complete implementation of control
ls_run_string =” ‘+”” + ls_outlook “/ c IPM.Note / m” + +” ls_addressee / a” + ls_path
/ / Implementation procedures
run (ls_run_string)
