Home
Forums
New posts
Search forums
Articles
Latest reviews
Search resources
Members
Current visitors
Newsgroups
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Home
Forums
Newsgroups
Microsoft Outlook
Microsoft Outlook Third-Party Utilities
Using Redemption and Excel: CCs, calendar items
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="DFStoneJr, post: 6664577"] Windows XP, Office 2003 I'm currently using variations of the following Excel VBA code to send e-mails through Outlook from Excel via the Redemption add-in: Sub SendSafeitem() Set objOL = CreateObject("Outlook.Application") Set Namespace = objOL.GetNamespace("MAPI") Namespace.Logon Set SafeItem = CreateObject("Redemption.SafeMailItem") 'Create an instance ofRedemption.SafeMailItem Set oItem = objOL.CreateItem(0) 'Create a new message oItem.Save FiletoSend = Sourcedir & FiletoSend SafeItem.Item = oItem 'set Item property SafeItem.Recipients.Add Recipients SafeItem.Subject = Subject SafeItem.Body = Body SafeItem.Send Set objOL = Nothing Set oItem = Nothing End Sub Is it possible, with or without Redemption, to: 1) add an attachment to the message, 2) add CC recipients rather than TO: recipients; and 3) add an item based on the message being sent to the Outlook calendar (e.g., a task to follow-up on the item at a certain date and time)? TIA. [/QUOTE]
Verification
Post reply
Home
Forums
Newsgroups
Microsoft Outlook
Microsoft Outlook Third-Party Utilities
Using Redemption and Excel: CCs, calendar items
Top