exchange-server Questions

3

Solved

If I do this: _calendar = (CalendarFolder)Folder.Bind(_service, WellKnownFolderName.Calendar); var findResults = _calendar.FindAppointments( new CalendarView(startDate.Date, endDate.Date) ); I...
Putrescine asked 17/8, 2012 at 4:28

2

is there an officially supported way to convert item ids from the Outlook REST API into an MAPI EntryID? I am talking about the "Id" field returned for items in the json response of an http GET on...
Trapper asked 14/2, 2017 at 7:53

4

Solved

So I have this very basic program that is trying to send an e-mail, but I keep getting Mailbox unavailable. The server response was: 5.7.1 Client does not have permissions to send as this sende...
Edris asked 22/8, 2012 at 20:44

3

Solved

I'm trying to find the guaranteed unique identifier to distinguish emails from each other. Currently, I am writing an application which connects to Microsoft Exchange, however I want to be able to ...
Lawler asked 6/8, 2012 at 20:41

1

Solved

Using exchangelib, how do you get a list of the members of a Global Distribution List? In the included test case I see how to create and delete a DL within a folder in your Contacts, but not refere...
Laurustinus asked 28/6, 2017 at 3:13

2

Solved

This document that applies to Exchange Server suggests that the bulk of API / Web Services is SOAP based: https://msdn.microsoft.com/en-us/library/office/dd877012(v=exchg.150).aspx However i see t...

3

Solved

I'm using Exchange Web Services to connect to a mailbox and look for messages matching certain criteria, using FindItems with a SearchFilter. I can get emails in a mailbox filtering on 'from' emai...
Swashbuckler asked 8/8, 2013 at 13:3

5

Solved

I use EWS to get exchange emails, but how can i get plain text from email body, without html? Now i use this: EmailMessage item = (EmailMessage)outbox.Items[i]; item.Load(); item.Body.Text
Unstoppable asked 28/6, 2012 at 11:45

2

Solved

I'm using the CodeIgniter email library to send emails using our Exchange server. The problem I get is that the content of the email gets messed up. There are some words that get replaced with equ...
Knockabout asked 25/10, 2012 at 9:36

1

I'd like to run a script, typically in PHP or MySQL since it involves changing a Mysql db table when an email arrives at my exchange server (2010). The server holds IIS7. So in short: Email->Exch...
Fowlkes asked 25/7, 2013 at 14:37

4

Solved

I am attempting to use Node.js to call the SOAP Exchange EWS services. I have created a simple http client like so: var https = require('https'); var username = 'user'; var password = 'pass...
Cesura asked 8/2, 2012 at 21:40

3

I have a correspondence application where each user creates a correspondence and send it to multiple users (average send us between 2-30 user), with each send I open a new thread and send email to ...
Herstein asked 18/4, 2017 at 8:8

5

Solved

I am writing a Java application to download emails using Exchange Web Services. I am using Microsoft's ewsjava API for doing this. I am able to fetch email headers. But, I am not able to download ...
Eastereasterday asked 5/7, 2011 at 16:41

3

Solved

Added: thanks to user @grapkulec, I am using using Microsoft.Exchange.WebServices.Data; I am trying to move an email to a folder that I've already created in Outlook (using MS Exchange). So far,...
Dovap asked 3/12, 2012 at 14:55

4

Solved

I have the following code that creates a PowerShell runspace with the Exchange 2010 snap in loaded. Dim runspaceConfig = RunspaceConfiguration.Create() Dim snapInException As PSSnapInException = ...
Wristband asked 18/9, 2012 at 15:44

2

Background: I am an highschool computer science teacher. My students uses Citrix as their means for sharing internal files. In order to access the files, they must be logged in using Citrix Receive...
Gracie asked 14/1, 2017 at 3:57

2

Solved

The EWS Managed API has a handful of functions for retrieving and managing email conversations (aka email threads). Unfortunately, a large part of them work only against new versions of Exchange (2...

4

I'm using a CalendarItemType view to retrieve calendar items. The only items I care about are those that I've created and I know that they are all weekly recurring items. I'm able to get each indiv...
Cantal asked 21/8, 2010 at 2:53

1

Solved

I've found the following documentation on how to send email using Office 365 rest API. This is the example given on the doucmentation: POST https://outlook.office.com/api/v2.0/me/sendmail { "Me...

3

Solved

Simply what the title says. Want to know how to check if the connection is working and if not, what is the error. Btw the SMTP server is exchange 2007.
Naval asked 9/9, 2010 at 11:0

6

As an "EWS Managed API Newbie", I'm having some problems finding examples and documentation about creating and managing Tasks. I've managed to create a task for myself without a problem. However, ...

4

I am trying to use Exchange Web Services to access calendar data, but I can't seem to figure out how to access calendars which have been shared by other users when it is not their default calendar....

2

We are developing a module with the main goal being to track and collect information about damage inspections (insurance market). Each case has a code (e.g. L000525). Each case could be managed by ...
Shoshanashoshanna asked 23/10, 2009 at 17:0

2

Solved

I set up a shared mailbox and can access it and its sub-folders: var folderId = new FolderId(WellKnownFolderName.MsgFolderRoot, "[email protected]"); var folders = client.FindFolders(folderId...
Enlistment asked 10/8, 2016 at 19:24

3

Solved

I've recently designed a program in C# that will pull information from SQL databases, write an HTML page with the results, and auto-email it out. I've got everything working [sporadically], the pro...
Klausenburg asked 4/2, 2013 at 17:45

© 2022 - 2024 — McMap. All rights reserved.