Sending Outlook meeting requests without Outlook?

The way to send a meeting request to Outlook (and have it recognized) goes like this: prepare an iCalendar file, be sure to set these additional properties, as Outlook needs them: UID SEQUENCE CREATED LAST-MODIFIED DTSTAMP prepare a multipart/alternative mail: Part 1: text/html (or whatever you like) – this is displayed to “ordinary” mail readers … Read more

How do I trigger a macro to run after a new mail is received in Outlook?

This code will add an event listener to the default local Inbox, then take some action on incoming emails. You need to add that action in the code below. Private WithEvents Items As Outlook.Items Private Sub Application_Startup() Dim olApp As Outlook.Application Dim objNS As Outlook.NameSpace Set olApp = Outlook.Application Set objNS = olApp.GetNamespace(“MAPI”) ‘ default … Read more

CSS padding is not working as expected in Outlook

Unfortunately, when it comes to EDMs (Electronic Direct Mail), Outlook is your worst enemy. Some versions don’t respect padding when a cell’s content dictates the cell dimensions. The approach that’ll give you the most consistent result across mail clients is to use empty table cells as padding (I know, the horror), but remember to fill … Read more

HTML email in outlook table width issue – content is wider than the specified table width

I guess problem is in width attributes in table and td remove ‘px’ for example <table border=”0″ cellpadding=”0″ cellspacing=”0″ width=”580px” style=”background-color: #0290ba;”> Should be <table border=”0″ cellpadding=”0″ cellspacing=”0″ width=”580″ style=”background-color: #0290ba;”>

Markdown in outlook [closed]

For future visitors: https://github.com/mmanela/MarkdownOutlook Per their wiki: A simple plugin for Outlook 2013 which adds a button to the compose mail menu to enable Markdown mode. When enabled your email will be turned from Markdown syntax to html when sending. Uses MarkdownSharp for the markdown conversion Uses VSTO to integrate with Outlook Uses an Installer … Read more