Questions tagged [outlook]

Microsoft Outlook is a personal information manager from Microsoft (most notably used for handling e-mail), available both as a separate application as well as a part of the Microsoft Office suite.

Microsoft Outlook is a personal information manager from Microsoft (most notably used for handling e-mail), available both as a separate application as well as a part of the Microsoft Office suite. It includes an e-mail client, calendar and other personal information organization tools.

The tag is for version-agnostic questions. 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) along with your version (if not mentioned in the question):

Links:

22017 questions
3
votes
2 answers

HTML in iCal using iCal4j

Is there a possibility to add html to a description from a vevent. I generate a VCALENDAR with a VEVENT with a description. I use Ical4j to sent the email with ICS This is what I try to do: BEGIN:VCALENDAR PRODID:-//----//Calendar…
Michel
  • 9,220
  • 13
  • 44
  • 59
3
votes
0 answers

outlook mail REST API

I'm trying to get access to my outlook inbox mail. This the code: Logger logger = LoggerFactory.getLogger(MainActivity.class); private static final String TAG = "MainActivity"; private static final String outlookBaseUrl =…
3
votes
1 answer

How to filter items sendername from Items_ItemAdd Events?

Private WithEvents Items As Outlook.Items Private Sub Application_Startup() Dim Ns As Outlook.NameSpace Dim Folder As Outlook.MAPIFolder Set Ns = Application.GetNamespace("MAPI") Set Folder = Ns.GetDefaultFolder(olFolderInbox) Set Items…
Ming Lian
  • 65
  • 7
3
votes
2 answers

How to create an appointment in outlook with vb?

I have a winforms application and I'm trying to create a method that will create a new Outlook appointment. I am using the following code, but Mark an error in the part of the creation of the object newAppointment. Private Sub AddAppointment() …
JoseEduardo
  • 35
  • 1
  • 3
3
votes
2 answers

Run multiple macros with a single macro, run into Compile Error

Was trying to write two macros to print attachments automatically upon receipt of new emails and only print the first page of the email. code looks like below: Private Declare Function ShellExecute Lib "shell32.dll" Alias _ "ShellExecuteA" (ByVal…
Ming Lian
  • 65
  • 7
3
votes
1 answer

Outlook Appointment Timezone display issue

I'm a developer in England and I'm currently on British Summertime. When adding an appointment via Office 365 API using the .Net Client Library for Office 365 Mail, Calendar and Contact API, the Timezone button on the Appointment when viewed in…
3
votes
1 answer

Outlook 2016 VML width issue

This is first question so please be gentle :-) I am in charge of creating surveys which is sent as an email invite to users. Recently I created a 10 point scale for users on an email where they click on a number of their choice and it takes them to…
Syfer
  • 4,262
  • 3
  • 20
  • 37
3
votes
1 answer

How do I PASS a SECOND Variable to run after a new mail is received in Outlook?

Private WithEvents Items As Outlook.Items Public MyTrueFalse As Boolean Private Sub Application_Startup() Dim MyTrueFalse As Boolean 'Redundant?' MyTrueFalse = True 'Defaults to False' Dim olApp As Outlook.Application Dim objNS As…
3
votes
1 answer

Open File From Outlook to Excel and Save as Different Format Depending on Sender

I use Stack Overflow a lot but this is my first post. I know just enough to be dangerous with VBA. I originally wrote this piece of code for Outlook - its original purpose was to rename any attachment file and save it in a specific directory (I…
3
votes
4 answers

Microsoft graph - outlook mail - list all mail folders (not just the top level ones)?

Currently, as far as I can tell, Microsoft graph offers 2 primary endpoints for outlook mail folders according to https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/message List mail folders and List child folders -…
AlanSTACK
  • 5,525
  • 3
  • 40
  • 99
3
votes
1 answer

Display sender name as set in message header, instead of full name from address book

I came across this as the only other thing I could find that resembled what I'm asking: http://office-outlook.com/outlook-forum/index.php/t/84123/ I'm sending an email through Office 365's SMTP server as a notification that a form was submitted to…
Twyx
  • 689
  • 8
  • 16
3
votes
2 answers

How to copy range from excel to outlook ignoring the first column where filter is applicable?

Hi I got a code which would filter the unique values in the A column and copy the whole range from A1:H, but I want to ignore the first column and want range to be copied form B1:H. Eg: if there is a table with marks of students and I want to post…
Revan Erraboina
  • 155
  • 1
  • 11
3
votes
1 answer

Excel VBA @SQL String filter Multiple LIKE Condition

This code works as intended but I also need to exclude Autoreplies and some other strings in a subject line. I need to know if it's possible to add 2 or 3 more Likes. I tried And and Or conditions but I'm getting a parse error. This code below…
wh3resmycar2
  • 191
  • 1
  • 13
3
votes
1 answer

getting exception :javax.mail.AuthenticationFailedException: 550 5.2.1 Mailbox cannot be accessed

I'm getting this exception when sending email via outlook. props.put("mail.smtp.auth", "true"); props.put("mail.smtp.starttls.enable", "true"); props.put("mail.smtp.host", "outlook.office365.com"); props.put("mail.smtp.port", "587"); but from gmail…
mike5026
  • 69
  • 2
  • 8
3
votes
1 answer

Trigger Outlook Event: Change Signature

Does anyone know if it possible to trigger a signature change event in Outlook 2016? I.e. Simulate clicking a signature as per the screenshot below: I am trying to change the signature automatically based on which 'From' address has been selected.…
chazjn
  • 313
  • 4
  • 18
1 2 3
99
100