scala-ms-exchange

Making working with Exchange easier.

License

License

Categories

Categories

Scala Languages
GroupId

GroupId

com.github.frankivo
ArtifactId

ArtifactId

scala-ms-exchange_2.11
Last Version

Last Version

1.2.2
Release Date

Release Date

Type

Type

jar
Description

Description

scala-ms-exchange
Making working with Exchange easier.
Project URL

Project URL

https://github.com/frankivo/scala-ms-exchange
Project Organization

Project Organization

com.github.frankivo
Source Code Management

Source Code Management

https://github.com/frankivo/scala-ms-exchange

Download scala-ms-exchange_2.11

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.frankivo/scala-ms-exchange_2.11/ -->
<dependency>
    <groupId>com.github.frankivo</groupId>
    <artifactId>scala-ms-exchange_2.11</artifactId>
    <version>1.2.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.frankivo/scala-ms-exchange_2.11/
implementation 'com.github.frankivo:scala-ms-exchange_2.11:1.2.2'
// https://jarcasting.com/artifacts/com.github.frankivo/scala-ms-exchange_2.11/
implementation ("com.github.frankivo:scala-ms-exchange_2.11:1.2.2")
'com.github.frankivo:scala-ms-exchange_2.11:jar:1.2.2'
<dependency org="com.github.frankivo" name="scala-ms-exchange_2.11" rev="1.2.2">
  <artifact name="scala-ms-exchange_2.11" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.frankivo', module='scala-ms-exchange_2.11', version='1.2.2')
)
libraryDependencies += "com.github.frankivo" % "scala-ms-exchange_2.11" % "1.2.2"
[com.github.frankivo/scala-ms-exchange_2.11 "1.2.2"]

Dependencies

compile (3)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.12
com.microsoft.ews-java-api : ews-java-api jar 2.0
org.mockito : mockito-scala_2.11 jar 1.13.7

test (1)

Group / Artifact Type Version
org.scalatest : scalatest_2.11 jar 3.1.1

Project Modules

There are no modules declared in this project.

scala-ms-exchange

Scala wrapper for microsoft.exchange.webservices

Easy to use.

For example, this is how you delete all mails with subject "test" and older than 30 days:

import com.github.frankivo.Email.Actions
import com.github.frankivo.EmailList.Filters
import com.github.frankivo.Exchange

new Exchange("[email protected]", "pass", "https://server/EWS/Exchange.asmx")
      .getInboxItems
      .withSubject("test")
      .minAge(30)
      .foreach(_.delete())

Versions

Version
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0