entourage

Why won't Entourage work with Exchange 2007?

So this is IT more than programming but Google found nothing, and you guys are just the right kind of geniuses. My Exchange Server 2007 and Entourage clients don't play nice. Right now the big issue is that the entourage client will not connect to Exchange 2007 ( Entourage 2004 or 2008) The account settings are correct and use the ...

MS Entourage and quoted-printable encoding

Hi, i'm looking for an answer to my problem with MS Entourage 2008 for Mac. I need to send a monthly newsletter composed as HTML email. All email clients (Outlook, Thunderbird ..) but Entourage can receive and read this email without major problems. Entourage, though is breaking the content and displays just few lines from the beginning....

Booking a Resource Using Entourage (MS Office 2008 for the Mac)

Does anyone know how to book a resource (such as a meeting room) when setting up a meeting inside of MS Entourage on the Mac? I found this post which says that you just need to use the mailbox name of the resource, but I've tried this out and it doesn't appear to work: I don't receive the auto accept notification like I do if I schedu...

Displaying images in Entourage 2004

We're sending out HTML newsletters, which display reasonably well in a number of desktop and web-based email readers. Entourage 2004 refuses to display images, even after clicking "To protect your privacy, some pictures in this message were not downloaded. Download pictures". The images are classic <img src="some-valid-url" width="wha...

Setup Entourage for Exchange via HTTP communication

Our ISP set up a hosted exchange server for all our mail. I've setup all our Outlook users with no problems. We have two people using Mac OSX Leopard and Entourage. Entourage has the option of adding an Exchange account, but I have no idea how to tell it to connect to exchange via HTTP. Heres an excerpt from the client setup docs the ...

html hyperlinks show URL in brackets in Entourage

I have an email script written in .Net that sends html emails. The email uses normal html hyperlinks to insert a link in the email, like this: <a href="http://www.stackoverflow.com/"&gt;StackOverflow&lt;/a&gt; The problem is that in Entourage, a hyperlink like this always shows up for me like this: StackOverflow < http://www.stackove...

Best way to replace mass emails sent from Entourage with a proper mailing list solution?

I am helping a Los Angeles choreographer to transition away from sending her announcements via Entourage. Here's the situation: She has multiple conact groups, and sends classes and performance announcements several times a month, to different groups. She manages the contact groups manually. The group size is between 1500 and 2500 peop...

Microsoft Entourage: rendering hyperlinks?

When we send emails from my project, we send in both text/plain and text/html formats. All major clients (gmail, yahoo, hotmail, thunderbird, outlook) correctly display the simple HTML that we are using. However, Entourage renders all tags EXCEPT hyperlinks. What is confusing is that emails from other domains render hyperlinks correctly ...

Using ScriptingBridge framework for communicating with Entourage

Hi, The motivation for my question is the following doc, which describes how mail.app could be integrated using ScriptingBridge: http://developer.apple.com/mac/library/samplecode/SBSendEmail/Introduction/Intro.html I tried to apply a similar technique with Entourage as well but could not get any results so far. I understand that using...

Email signature in Entourage

Hello all, I am trying to set an email signature in Entourage and when pasting the html code in the editor it gets screwed up. Yes, I do have the HTML button pressed at the top. I am using a table with three columns and they are sort of displaying as rows at the moment. Thanks!!! ...

Enable SSL on Entourage

We're running Microsoft Entourage 2008 for email on our Mac systems. Until recently we have NOT been using SSL. Since we now have the certificate on the server we would like to change all accounts to use this. The problem is that we have a few hundred systems and this will take considerable time. Is anyone familiar of a script that will ...

AppleScript code to loop messages in Entourage and delete them

Hi Guys, I wrote a simple AppleScript which loops indefinitely inside Entourage Inbox and gets subjects of "unread" messages: tell application "Microsoft Entourage" activate repeat with eachMsg in messages of folder named "Inbox" if read status of eachMsg is untouched then set messageSubject to subject of eachMsg as string...