Questions tagged [outlook-2011]

Microsoft Outlook for Mac 2011.is a personal information manager from Microsoft (most notably used for handling e-mail) Mac OS X version 10.5.8 (or a later version), available both as a separate application as well as a part of the Microsoft Office suite.

The tag is for questions related to this specific version of . It is expected that questions on Stack Overflow relate to programming, so you should also be tagging your question with a tag such as (if you are programming in VBA) or , etc.

17 questions
3
votes
1 answer

Assign Outlook for Mac categories with Applescript?

A solution in search of a question. Not a big fan of how categories are assigned in the Outlook interface with all the mouse moving and stuff, so how to make it work with Applescript? To that question I created this Applescript to allow you to…
Todd Vanyo
  • 545
  • 5
  • 15
2
votes
0 answers

AppleScript for Outlook 2011 for Mac to save all attachments to external drive and then remove them from emails

I have an Outlook 2011 (Mac) version of this question: save all email attachments in outlook folder to folder And, I've seen AppleScripts at places like this:…
bacchus6
  • 21
  • 3
2
votes
2 answers

Applescript or Automator to apply rules in Outlook Mac 2011

I have a local mail rule I'd like to apply on a schedule. To apply all rules manually, I can click the Message menu -> Rules -> Apply -> Apply All. Is there a way to automate this action with Applescript? I looked through the dictionary for Outlook…
craig65535
  • 3,439
  • 1
  • 23
  • 49
1
vote
1 answer

Applescript to extract subject line

Total n00b here, definitely not a programmer. Would love some assistance with an applescript. I'm basically trying to extract a subject line from emails in a particular folder underneath my inbox. I need it to yank out the subject line, look for…
Mobi
  • 23
  • 2
1
vote
1 answer

AppleScript works in Editor but not in Outlook

This works in the AppleScript Editor: tell application "Microsoft Outlook" to activate tell application "System Events" click menu item "Block Sender" of menu "Junk Mail" of menu item "Junk Mail" of menu "Message" of menu bar item "Message" in…
craig
  • 25,664
  • 27
  • 119
  • 205
1
vote
1 answer

Does Outlook 2011 allow attachments through mailto link?

I am trying to start composing a new message via mailto on OS X. I have set my default email client to be Outlook, so I can open up Outlook with a preconfigured message like so: open 'mailto:SomeEmail@example.com?subject=hey&body=how are you…
Adam Johns
  • 35,397
  • 25
  • 123
  • 176
1
vote
1 answer

Search Outlook contacts by email using AppleScript and mdfind

Is there a more-efficient way to determine if a contact doesn't exist than this: set theAddress to "foo@bar.com" set found to false repeat with aContact in contacts if email addresses of aContact contains theAddress then set found to true …
craig
  • 25,664
  • 27
  • 119
  • 205
0
votes
1 answer

mso-line-height and mso-text-raise not working in Outlook 2013?

I have a footer with 3 columns that are all strictly nested in a table-based layout for an HTML email template. I'm trying to fix the footer in which the line height for the third column does not match the top baseline of the first two. I've been…
TheAmazingKnight
  • 2,442
  • 9
  • 49
  • 77
0
votes
1 answer

Spacing Issue in HTML email with Outlook

I have an email I'm sending out which I originally designed in mailchimp and then extracted the code from there to further customize it. I have a two column header in where the logo is on the left & social icons on the right. I tested it on…
peyton98
  • 23
  • 1
  • 6
0
votes
1 answer

VBA dialog boxes automatically answer solution

I compiled and coded a macro for Outlook 2011. This macro for that it saves all the mails as word file. The problem is that I couldn't close the dialog box automatically, I have so much signed message I couldn't solve this problem. This is the…
Kağan Cenan
  • 41
  • 1
  • 9
0
votes
1 answer

Change Read Status in Inbox (On My Computer) through applescript

I have a rule to autocopy every message received from a work email to the On My Computer inbox. However, the rule to automatically change its read status to true doesn't work. I took to applescript to see if I could this through here. I've gotten to…
0
votes
1 answer

Auto BCC Microsoft Outlook 2011 using Applescript

I have been searching the past few days and with no luck trying to find a solution. My company is trying to us a CRM system which tracks e-mails. I want to automatically BCC e-mails to contacts in certain categories. Since it is impossible for rules…
Kasandra
  • 45
  • 12
0
votes
1 answer

AppleScript to copy (duplicate) a meeting in Outlook 2011

Outlook 2011 supports option-click-drag to copy a pure appointment calendar item (one with no attendees), but has no facility to copy or duplicate a meeting item (one with attendees). I figure there must be a way to do this in AppleScript.
jetset
  • 388
  • 4
  • 14
0
votes
2 answers

Inserting Text at the Beginning of a Message

I'm trying to write an applescript which will insert some predefined text at the beginning of a message. This is what I currently have: set msgClass to (choose from list {"Green", "Blue", "Purple"} with title "Choose:") if result is false then …
jpdyson
  • 43
  • 1
  • 5
0
votes
1 answer

Applescript for Outlook 2011 to iterate through all folders such as inbox etc

I want to loop throgh all the folders of outlook 2011 in MAC computer using Apple script (means just sort of automation). i have script which throws error while running. tell application "Microsoft Outlook" set thisAccount to exchange account…
user3350898
1
2