outlook

Outlook adding destination URL in square brackets after hyperlink in HTML e-mail

雨燕双飞 提交于 2020-08-07 03:50:13
问题 Bit of a head scratcher here, and I'm still waiting on some details. The client reported that in Outlook, they are seeing the link in square brackets after the A tag. This apparently just started with the most recent round of e-mails I did for them, but the link code has not changed. Here is an example of a link : <p style='margin-bottom:20px !important;' > <a href="https://www.fepblue.org/pilot/login" style="color:#005172; text-decoration:none; font-weight: bold; font-size:18px;">Visit

Outlook adding destination URL in square brackets after hyperlink in HTML e-mail

浪子不回头ぞ 提交于 2020-08-07 03:49:30
问题 Bit of a head scratcher here, and I'm still waiting on some details. The client reported that in Outlook, they are seeing the link in square brackets after the A tag. This apparently just started with the most recent round of e-mails I did for them, but the link code has not changed. Here is an example of a link : <p style='margin-bottom:20px !important;' > <a href="https://www.fepblue.org/pilot/login" style="color:#005172; text-decoration:none; font-weight: bold; font-size:18px;">Visit

How to format email body?

一笑奈何 提交于 2020-07-24 04:08:42
问题 I'm opening an Outlook email from Excel. I would like to format the body, e.g. using a certain font and making a few words bold. Here is my VBA code for opening an email: Set OutApp = CreateObject("Outlook.Application") OutApp.Session.Logon Set OutMail = OutApp.CreateItem(olMailItem) With OutMail .To = strRecipient .CC = "" .BCC = "" .subject = strSubject .body = strBody .Display End With 回答1: You'll need to use the HTML mail format for that: OutMail.BodyFormat = olFormatHTML OutMail.HTMLBody

How to format email body?

↘锁芯ラ 提交于 2020-07-24 04:08:36
问题 I'm opening an Outlook email from Excel. I would like to format the body, e.g. using a certain font and making a few words bold. Here is my VBA code for opening an email: Set OutApp = CreateObject("Outlook.Application") OutApp.Session.Logon Set OutMail = OutApp.CreateItem(olMailItem) With OutMail .To = strRecipient .CC = "" .BCC = "" .subject = strSubject .body = strBody .Display End With 回答1: You'll need to use the HTML mail format for that: OutMail.BodyFormat = olFormatHTML OutMail.HTMLBody

How to format email body?

て烟熏妆下的殇ゞ 提交于 2020-07-24 04:08:22
问题 I'm opening an Outlook email from Excel. I would like to format the body, e.g. using a certain font and making a few words bold. Here is my VBA code for opening an email: Set OutApp = CreateObject("Outlook.Application") OutApp.Session.Logon Set OutMail = OutApp.CreateItem(olMailItem) With OutMail .To = strRecipient .CC = "" .BCC = "" .subject = strSubject .body = strBody .Display End With 回答1: You'll need to use the HTML mail format for that: OutMail.BodyFormat = olFormatHTML OutMail.HTMLBody

How to format email body?

时光怂恿深爱的人放手 提交于 2020-07-24 04:06:00
问题 I'm opening an Outlook email from Excel. I would like to format the body, e.g. using a certain font and making a few words bold. Here is my VBA code for opening an email: Set OutApp = CreateObject("Outlook.Application") OutApp.Session.Logon Set OutMail = OutApp.CreateItem(olMailItem) With OutMail .To = strRecipient .CC = "" .BCC = "" .subject = strSubject .body = strBody .Display End With 回答1: You'll need to use the HTML mail format for that: OutMail.BodyFormat = olFormatHTML OutMail.HTMLBody

Outlook template rule to sort mails among directories

我只是一个虾纸丫 提交于 2020-07-24 01:29:07
问题 I have folders created for different projects (e.g. Proj1, Proj2, Proj3, ...). It is general convention in the department to sent emails concerning specific project with its name in the subject (e.g. "Proj1: project finished!"). I know that I can create rules for every project to move mails that contain its name to the project folder. However, I would need to create as many rules as the number of folders I have - so its not very convenient and optimal. Is there any way to create a rule (a

Outlook template rule to sort mails among directories

半城伤御伤魂 提交于 2020-07-24 01:27:10
问题 I have folders created for different projects (e.g. Proj1, Proj2, Proj3, ...). It is general convention in the department to sent emails concerning specific project with its name in the subject (e.g. "Proj1: project finished!"). I know that I can create rules for every project to move mails that contain its name to the project folder. However, I would need to create as many rules as the number of folders I have - so its not very convenient and optimal. Is there any way to create a rule (a

Outlook template rule to sort mails among directories

混江龙づ霸主 提交于 2020-07-24 01:25:30
问题 I have folders created for different projects (e.g. Proj1, Proj2, Proj3, ...). It is general convention in the department to sent emails concerning specific project with its name in the subject (e.g. "Proj1: project finished!"). I know that I can create rules for every project to move mails that contain its name to the project folder. However, I would need to create as many rules as the number of folders I have - so its not very convenient and optimal. Is there any way to create a rule (a

Access Get subfolder of shared folder meetings

有些话、适合烂在心里 提交于 2020-07-22 03:44:24
问题 I have the code below that should let me retrieve the meetings from a shared sub calendar, but it doesn't work. If I only try to access the main shared calendar it works perfect, but not for the sub calendars.. could someone point me to the right way? Public Sub getCalendarData(calendar_name As String, sDate As Date, eDate As Date, Optional recurItem As Boolean = True) On Error GoTo ErrorHandler Dim oOL As Outlook.Application Dim oNS As Outlook.Folder Dim oAppointments As Outlook