It was stated that this was a known bug issue however this seems to still be an issue. I have found no information that was updated since 2012. Can anyone help? 

Hello,

I'm looking for an option to allow me to sync my Outlook calendar with my iPhone & iPad and vice-versa.  

Was told that Exchange ActiveSync would allow this.  My question is, how does this work?  

Looks to me as if I create another email account but how does this account get me the calendar events from Outlook to the iPhone / iPad?  Do I just add the account to Outlook and when I create a cal event, it is based on this new account?  So, when I set it up on the iPhone / iPad, I just have it sync the Cal too?  

If so, how does one create a cal event in Outlook for a particular account?  

Or am I missing some of the basics?  

Thanks in advance.

BP

I have Outlook for Mac 2011. I want to set up a rule to automatically reply to a specific incoming message with a preset email I created earlier.

How do I accomplish this?

Thank you!

I had to get my iPhone replaced twice in the last 5 days.  The second time I received an email from Outlook stating I have to delete a phone partnership by going into the Outlook Web App.  I’ve never had an account nor do I know where to look in order to log in and do this.  I currently cannot sync the email associated with my Outlook on my Mac with my phone and am unable to get emails.  How can I solve this?  Thank you.

Hello everyone,

I work in IT on a university campus where we primarily use Windows 7 x64, but we have a handful of Mac users. Our email accounts and are all on MS Exchange and all work fine with Office 2011. However, we have a client that needs to send as an email address that is managed by an Active Directory group, meaning that once users are added to the group, they get the option in Outlook to "send as" that email address. In Office 2011, that option is not available. Keep in mind, this is not an actual user account, so setting up Delegate Access or setting up the account outright doesn't work. For our client, the email address shows up in Office 2013 in Windows and also on Outlook Web Access. Does anyone have any ideas?

Thank you!

After being granted shared access to calendars hosted on our Exchange server, all of those related email addresses now show up as options in the "From" dropdown box when I compose new emails. I regularly use 3 accounts in Outlook (only one is hosted on that Exchange server), but do not want to see the other email addresses show up as options to choose from. I only want to see the three email addresses that are associated with my own accounts.

Thanks.

Hi,

I am seeing that when people receive my emails that I send from Outlook 2011 (mac), the image/logo within my signature is showing up twice.

please advise! 

Csongor


Hi,


First of all, if there is another way other than applescript that also does the trick, that is also fine.

I've been searching the web for a script to save all the attachments from my email to a local folder (Or network folder) and then delete them using applescript.
I came acros alot of script but all of them don't save my actual attachment, the best script I found deleted the attachment and added a line in the email saying the attachment was deleted. I tried so many scripts, trying to combine and edit them but they all don't seem to save my attachments.

so somehow the this part of saving does not work

     save a in “/Users/****/Desktop/” & id of msg & “/” & name of a

Is there a change in code maybe? Cause the posts are from 2 years ago.

tell application "Microsoft Outlook"

set msgs to current messages

set sz to 0

repeat with msg in msgs

set theName to subject of msg

set fixName to theName as string

set AppleScript's text item delimiters to "/"

set theString to text items of fixName

set AppleScript's text item delimiters to " "

set fixName to theString as string

set AppleScript's text item delimiters to ""

log "Subject: " & subject of msg

tell application "Finder"

set p to path to desktop

make new folder at p with properties {name:fixName}

end tell

set fileDownloadedList to "Attachments Removed:<br>------------------------<br>"

if msgs is {} then

display dialog "Please select a message first then run the script" with icon 1

return

end if

set atts to attachments of msg

repeat with att in atts

set a to att

try

set asz to file size of a

save a in "/Users/ssbg/Desktop/" & fixName & name of a

set sz to sz + asz

set fileDownloadedURL to "file://localhost" & my path2url(POSIX path of fileDownloaded)

set fileDownloadedList to fileDownloadedList & "Attachment:  <a href=\"" & fileDownloadedURL & "\">" & fileDownloaded & "</a><br>"

on error

exit repeat

end try

end repeat

set content of msg to fileDownloadedList & "<br>" & content of msg

set attachmentCount to count of atts

repeat (attachmentCount) times

delete item 1 of atts

end repeat

end repeat

end tell

Thanks,

Sandy

I am trying to figure out how to send/receive text messages in outlook 2011 for mac.  What are the different ways to do this?  THank you.