Метод | Описание | |
---|---|---|
ActivateBounce ( string bounceId ) : |
Activates a deactivated bounce.
|
|
GetBounce ( string bounceId ) : |
Retrieves a single PostmarkBounce based on a specified ID.
|
|
GetBounceDump ( string bounceId ) : |
Returns the raw source of the bounce we accepted. If Postmark does not have a dump for that bounce, it will return an empty string.
|
|
GetBounceTags ( ) : IEnumerable |
Returns a list of tags used for the current server.
|
|
GetBounces ( PostmarkBounceType type, bool inactive, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( PostmarkBounceType type, bool inactive, string emailFilter, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( PostmarkBounceType type, bool inactive, string emailFilter, string tag, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( PostmarkBounceType type, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( PostmarkBounceType type, string emailFilter, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( PostmarkBounceType type, string emailFilter, string tag, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( bool inactive, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( bool inactive, string emailFilter, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( bool inactive, string emailFilter, string tag, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( string emailFilter, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetBounces ( string emailFilter, string tag, int offset, int count ) : |
Retrieves a collection of PostmarkBounce instances along with a sum total of bounces recorded by the server, based on filter parameters.
|
|
GetDeliveryStats ( ) : |
Retrieves the bounce-related PostmarkDeliveryStats results for the associated mail server.
|
|
GetInboundMessageDetail ( string messageID ) : InboundMessageDetail |
Get the full details of a processed inbound message including all fields, attachment names, etc.
|
|
GetInboundMessages ( int count, int offset ) : PostmarkInboundMessageList |
Return a listing of Inbound sent messages using the filters supported by the API.
|
|
GetInboundMessages ( string fromemail, int count, int offset ) : PostmarkInboundMessageList |
Return a listing of Inbound sent messages using the filters supported by the API.
|
|
GetInboundMessages ( string fromemail, string subject, int count, int offset ) : PostmarkInboundMessageList |
Return a listing of Inbound sent messages using the filters supported by the API.
|
|
GetInboundMessages ( string recipient, string fromemail, string subject, int count, int offset ) : PostmarkInboundMessageList |
Return a listing of Inbound sent messages using the filters supported by the API.
|
|
GetInboundMessages ( string recipient, string fromemail, string subject, string mailboxhash, int count, int offset ) : PostmarkInboundMessageList |
Return a listing of Inbound sent messages using the filters supported by the API.
|
|
GetOutboundMessageDetail ( string messageID ) : OutboundMessageDetail |
Get the full details of a sent message including all fields, raw body, attachment names, etc
|
|
GetOutboundMessageDump ( string messageID ) : MessageDump |
Get the original raw message dump of on outbound message including all SMTP headers and data.
|
|
GetOutboundMessages ( int count, int offset ) : PostmarkOutboundMessageList |
Return a listing of Outbound sent messages using the filters supported by the API.
|
|
GetOutboundMessages ( int count, int offset, string recipient ) : PostmarkOutboundMessageList |
Return a listing of Outbound sent messages using the filters supported by the API.
|
|
GetOutboundMessages ( int count, string subject, int offset ) : PostmarkOutboundMessageList |
Return a listing of Outbound sent messages using the filters supported by the API.
|
|
GetOutboundMessages ( string subject, int count, int offset ) : PostmarkOutboundMessageList |
Return a listing of Outbound sent messages using the filters supported by the API.
|
|
GetOutboundMessages ( string recipient, string fromemail, int count, int offset ) : PostmarkOutboundMessageList |
Return a listing of Outbound sent messages using the filters supported by the API.
|
|
GetOutboundMessages ( string fromemail, string tag, string subject, int count, int offset ) : PostmarkOutboundMessageList |
Return a listing of Outbound sent messages using the filters supported by the API.
|
|
GetOutboundMessages ( string recipient, string fromemail, string tag, string subject, int count, int offset ) : PostmarkOutboundMessageList |
Return a listing of Outbound sent messages using the filters supported by the API.
|
|
PostmarkClient ( string serverToken ) : System.Collections.Specialized |
Initializes a new instance of the PostmarkClient class. If you do not have a server token you can request one by signing up to use Postmark: http://postmarkapp.com.
|
|
PostmarkClient ( string serverToken, bool noSSL ) : System.Collections.Specialized |
Initializes a new instance of the PostmarkClient class. If you do not have a server token you can request one by signing up to use Postmark: http://postmarkapp.com. Extra signature to override https
|
|
PostmarkClient ( string serverToken, int timeout ) : System.Collections.Specialized |
Initializes a new instance of the PostmarkClient class. If you do not have a server token you can request one by signing up to use Postmark: http://postmarkapp.com.
|
|
SendMessage ( |
Sends a message through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
|
SendMessage ( |
Send an email using a template associated with your Server.
|
|
SendMessage ( string from, string to, string subject, string body ) : |
Sends a message through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
|
SendMessage ( string from, string to, string subject, string body, NameValueCollection headers ) : |
Sends a message through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
|
SendMessage ( |
Sends a message through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
|
SendMessage ( string from, string to, string subject, string body, Action |
Sends a message through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
|
SendMessage ( string from, string to, string subject, string body, NameValueCollection headers, Action |
Sends a message through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
|
SendMessages ( ) : IEnumerable |
Sends a batch of messages through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
|
SendMessages ( IEnumerable |
Sends a batch of messages through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
|
SendMessages ( IEnumerable |
Sends a batch of up to messages through the Postmark API. All email addresses must be valid, and the sender must be a valid sender signature according to Postmark. To obtain a valid sender signature, log in to Postmark and navigate to: http://postmarkapp.com/signatures.
|
Метод | Описание | |
---|---|---|
BeginGetPostmarkResponse ( Hammock.RestRequest request, Action |
||
BeginGetPostmarkResponses ( Hammock.RestRequest request, Action |
||
CleanPostmarkMessage ( |
||
GetBouncesImpl ( PostmarkBounceType type, bool inactive, string emailFilter, string tag, int offset, int count ) : |
||
GetInboundMessagesImpl ( string recipient, string fromemail, string subject, string mailboxhash, int count, int offset ) : PostmarkInboundMessageList |
Implementation to get Inbound messages for the public search APIs
|
|
GetOutboundMessagesImpl ( string recipient, string fromemail, string tag, string subject, int count, int offset ) : PostmarkOutboundMessageList |
Implementation called to do the actual messages call and return a PostmarkOutboundMessageList
|
|
GetPostmarkResponse ( Hammock.RestRequest request ) : |
||
GetPostmarkResponseImpl ( Hammock.RestResponseBase response ) : |
||
GetPostmarkResponses ( Hammock.RestRequest request ) : IEnumerable |
||
GetPostmarkResponsesImpl ( Hammock.RestResponseBase response ) : IEnumerable |
||
NewBatchedEmailRequest ( ) : Hammock.RestRequest | ||
NewBouncesRequest ( ) : Hammock.RestRequest | ||
NewEmailRequest ( ) : Hammock.RestRequest | ||
NewMessagesRequest ( ) : Hammock.RestRequest | ||
NewTemplatedEmailRequest ( ) : Hammock.RestRequest | ||
PostmarkClient ( ) : System.Collections.Specialized | ||
SetPostmarkMeta ( Hammock.RestBase request ) : void | ||
TryGetPostmarkResponse ( Hammock.RestResponseBase response ) : |
||
TryGetPostmarkResponses ( Hammock.RestResponseBase response ) : IEnumerable |
public ActivateBounce ( string bounceId ) : |
||
bounceId | string | The bounce ID |
Результат |
public GetBounce ( string bounceId ) : |
||
bounceId | string | The bounce ID |
Результат |
public GetBounceDump ( string bounceId ) : |
||
bounceId | string | The bounce ID |
Результат |
public GetBounces ( PostmarkBounceType type, bool inactive, int offset, int count ) : |
||
type | PostmarkBounceType | The type of bounces to filter on |
inactive | bool | Whether to return only inactive or active bounces; use null to return all bounces |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( PostmarkBounceType type, bool inactive, string emailFilter, int offset, int count ) : |
||
type | PostmarkBounceType | The type of bounces to filter on |
inactive | bool | Whether to return only inactive or active bounces; use null to return all bounces |
emailFilter | string | Filters based on whether the filter value is contained in the bounce source's email |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( PostmarkBounceType type, bool inactive, string emailFilter, string tag, int offset, int count ) : |
||
type | PostmarkBounceType | The type of bounces to filter on |
inactive | bool | Whether to return only inactive or active bounces; use null to return all bounces |
emailFilter | string | Filters based on whether the filter value is contained in the bounce source's email |
tag | string | Filters on the bounce tag |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( PostmarkBounceType type, int offset, int count ) : |
||
type | PostmarkBounceType | The type of bounces to filter on |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( PostmarkBounceType type, string emailFilter, int offset, int count ) : |
||
type | PostmarkBounceType | The type of bounces to filter on |
emailFilter | string | Filters based on whether the filter value is contained in the bounce source's email |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( PostmarkBounceType type, string emailFilter, string tag, int offset, int count ) : |
||
type | PostmarkBounceType | The type of bounces to filter on |
emailFilter | string | Filters based on whether the filter value is contained in the bounce source's email |
tag | string | Filters on the bounce tag |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( bool inactive, int offset, int count ) : |
||
inactive | bool | Whether to return only inactive or active bounces; use null to return all bounces |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( bool inactive, string emailFilter, int offset, int count ) : |
||
inactive | bool | Whether to return only inactive or active bounces; use null to return all bounces |
emailFilter | string | Filters based on whether the filter value is contained in the bounce source's email |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( bool inactive, string emailFilter, string tag, int offset, int count ) : |
||
inactive | bool | Whether to return only inactive or active bounces; use null to return all bounces |
emailFilter | string | Filters based on whether the filter value is contained in the bounce source's email |
tag | string | Filters on the bounce tag |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( int offset, int count ) : |
||
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( string emailFilter, int offset, int count ) : |
||
emailFilter | string | Filters based on whether the filter value is contained in the bounce source's email |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetBounces ( string emailFilter, string tag, int offset, int count ) : |
||
emailFilter | string | Filters based on whether the filter value is contained in the bounce source's email |
tag | string | Filters on the bounce tag |
offset | int | The page offset for the returned results; mandatory |
count | int | The number of results to return by the page offset; mandatory. |
Результат |
public GetDeliveryStats ( ) : |
||
Результат |
public GetInboundMessageDetail ( string messageID ) : InboundMessageDetail | ||
messageID | string | The MessageID of a message which can be optained either from the initial API send call or a GetInboundMessages call. |
Результат | InboundMessageDetail |
public GetInboundMessages ( int count, int offset ) : PostmarkInboundMessageList | ||
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkInboundMessageList |
public GetInboundMessages ( string fromemail, int count, int offset ) : PostmarkInboundMessageList | ||
fromemail | string | Filter by the email address the message is sent from. |
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkInboundMessageList |
public GetInboundMessages ( string fromemail, string subject, int count, int offset ) : PostmarkInboundMessageList | ||
fromemail | string | Filter by the email address the message is sent from. |
subject | string | Filter by message subject. |
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkInboundMessageList |
public GetInboundMessages ( string recipient, string fromemail, string subject, int count, int offset ) : PostmarkInboundMessageList | ||
recipient | string | Filter by the recipient(s) of the message. |
fromemail | string | Filter by the email address the message is sent from. |
subject | string | Filter by message subject. |
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkInboundMessageList |
public GetInboundMessages ( string recipient, string fromemail, string subject, string mailboxhash, int count, int offset ) : PostmarkInboundMessageList | ||
recipient | string | Filter by the recipient(s) of the message. |
fromemail | string | Filter by the email address the message is sent from. |
subject | string | Filter by message subject. |
mailboxhash | string | Filter by mailbox hash that was parsed from the inbound message. |
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkInboundMessageList |
public GetOutboundMessageDetail ( string messageID ) : OutboundMessageDetail | ||
messageID | string | The MessageID of a message which can be optained either from the initial API send call or a GetOutboundMessages call. |
Результат | OutboundMessageDetail |
public GetOutboundMessageDump ( string messageID ) : MessageDump | ||
messageID | string | The MessageID of a message which can be optained either from the initial API send call or a GetOutboundMessages call. |
Результат | MessageDump |
public GetOutboundMessages ( int count, int offset ) : PostmarkOutboundMessageList | ||
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkOutboundMessageList |
public GetOutboundMessages ( int count, int offset, string recipient ) : PostmarkOutboundMessageList | ||
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
recipient | string | Filter by the recipient(s) of the message. |
Результат | PostmarkOutboundMessageList |
public GetOutboundMessages ( int count, string subject, int offset ) : PostmarkOutboundMessageList | ||
count | int | Number of messages to return per call. (required) |
subject | string | Filter by message subject. |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkOutboundMessageList |
public GetOutboundMessages ( string subject, int count, int offset ) : PostmarkOutboundMessageList | ||
subject | string | Filter by message subject. |
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkOutboundMessageList |
public GetOutboundMessages ( string recipient, string fromemail, int count, int offset ) : PostmarkOutboundMessageList | ||
recipient | string | Filter by the recipient(s) of the message. |
fromemail | string | Filter by the email address the message is sent from. |
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkOutboundMessageList |
public GetOutboundMessages ( string fromemail, string tag, string subject, int count, int offset ) : PostmarkOutboundMessageList | ||
fromemail | string | Filter by the email address the message is sent from. |
tag | string | Filter by a tag used for the message (messages sent directly through the API only) |
subject | string | Filter by message subject. |
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkOutboundMessageList |
public GetOutboundMessages ( string recipient, string fromemail, string tag, string subject, int count, int offset ) : PostmarkOutboundMessageList | ||
recipient | string | Filter by the recipient(s) of the message. |
fromemail | string | Filter by the email address the message is sent from. |
tag | string | Filter by a tag used for the message (messages sent directly through the API only) |
subject | string | Filter by message subject. |
count | int | Number of messages to return per call. (required) |
offset | int | Number of messages to offset/page per call. (required) |
Результат | PostmarkOutboundMessageList |
public PostmarkClient ( string serverToken ) : System.Collections.Specialized | ||
serverToken | string | The server token. |
Результат | System.Collections.Specialized |
public PostmarkClient ( string serverToken, bool noSSL ) : System.Collections.Specialized | ||
serverToken | string | You can get a server token by signing up at http://www.postmarkapp.com |
noSSL | bool | Skip https usage |
Результат | System.Collections.Specialized |
public PostmarkClient ( string serverToken, int timeout ) : System.Collections.Specialized | ||
serverToken | string | The server token. |
timeout | int | Time to wait for the API in seconds. |
Результат | System.Collections.Specialized |
public SendMessage ( |
||
message | A prepared message instance. | |
Результат |
public SendMessage ( |
||
message | ||
Результат |
public SendMessage ( string from, string to, string subject, string body ) : |
||
from | string | An email address for a sender. |
to | string | An email address for a recipient. |
subject | string | The message subject line. |
body | string | The message body. |
Результат |
public SendMessage ( string from, string to, string subject, string body, NameValueCollection headers ) : |
||
from | string | An email address for a sender. |
to | string | An email address for a recipient. |
subject | string | The message subject line. |
body | string | The message body. |
headers | NameValueCollection | A collection of additional mail headers to send with the message. |
Результат |
public SendMessage ( |
||
message | A prepared message instance | |
callback | Action |
The callback invoked when a response is received from the API |
Результат | void |
public SendMessage ( string from, string to, string subject, string body, Action |
||
from | string | An email address for a sender. |
to | string | An email address for a recipient. |
subject | string | The message subject line. |
body | string | The message body. |
callback | Action |
The callback invoked when a |
Результат | void |
public SendMessage ( string from, string to, string subject, string body, NameValueCollection headers, Action |
||
from | string | An email address for a sender |
to | string | An email address for a recipient |
subject | string | The message subject line |
body | string | The message body |
headers | NameValueCollection | A collection of additional mail headers to send with the message |
callback | Action |
The callback invoked when a response is received from the API |
Результат | void |
public SendMessages ( IEnumerable |
||
messages | IEnumerable |
A prepared message batch. |
Результат | IEnumerable |
public SendMessages ( IEnumerable |
||
messages | IEnumerable |
A prepared message batch. |
callback | Action |
The callback invoked when a response is received from the API |
Результат | void |