-
Notifications
You must be signed in to change notification settings - Fork 21
Getting Started
Igor Balos edited this page Nov 9, 2017
·
13 revisions
Getting started with Postmark is very easy. In order to start using full potential of Postmark API, you will need to:
- Signup for a new account
- Retrieve a Server API token, from one of the servers you created in your account
- Retrieve an Account API token (optional)
- Create a sender signature
Account API token is needed only for admins, for managing account details like domains, signatures, etc. To read more about tokens, check out our developer docs.
Sending email with Postmark is super easy, check out the following code example.
ApiClient client = Postmark.getApiClient(); Message message = new Message(, "[email protected]", "Hello from Postmark!", "Hello message body"); MessageResponse response = client.deliverMessage(message);
For additional information about the capabilities of the Postmark API, see Postmark Developers Documentation.