yard
An integration with Arc and Ecto.
A Bamboo adapter for Sparkpost email service
Simple deployment and server automation for Elixir.
nvm support for Capistrano 3.x
reproduction of QP & pushState interoperation
Concuerror is a systematic testing tool for concurrent Erlang programs
A Brew tap for http://parapluu.github.io/Concuerror
PR opened ex-aws/ex_aws_ses
As @lessless suggested, here is a PR with nothing but the changes from mix format.
pr created time in 16 days
pull request commentex-aws/ex_aws_ses
Add functions for custom verification emails
@lessless There you go :smiley:
comment created time in 16 days
pull request commentex-aws/ex_aws_ses
Add functions for custom verification emails
Alrighty, I’ll take a shot at the tests.
comment created time in 24 days
PR opened ex-aws/ex_aws_ses
Besides other documentation changes, this commit ensures the generated HTML doc for HexDocs.pm will become the main reference doc for this Elixir library which leverage on latest features of ExDoc.
pr created time in a month
pull request commentex-aws/ex_aws_ses
Add functions for custom verification emails
While working on this, I noticed some of the code in this repo has not been formatted with mix format. I didn’t include this as part of the PR, but could do that if you find it useful.
I also noticed that there aren’t parsers for all queries. Is that on purpose or should all responses have parsers?
comment created time in a month
PR opened ex-aws/ex_aws_ses
This implements the following new functions:
create_custom_verification_email_template/6update_custom_verification_email_template/1delete_custom_verification_email_template/1list_custom_verification_email_templates/1send_custom_verification_email/3
pr created time in a month
pull request commentex-aws/ex_aws_ses
add support for SES API v2 with contact lists & contacts
@j4p3 looks good!
Can you please also add parser tests https://github.com/ex-aws/ex_aws_ses/blob/master/test/lib/ses/parser_test.exs ?
This PR doesn't make any changes to the parser; the v2 API returns JSON instead of XML (https://docs.aws.amazon.com/ses/latest/APIReference-V2/API_GetContact.html#API_GetContact_ResponseSyntax).
So for instance, passing an operation constructed by ExAws.SES.get_contact to ExAws request would return a tuple with a map of response data, without needing to be passed to the parser.
{:ok,
%{
"AttributesData" => nil,
"ContactListName" => "test_list",
"CreatedTimestamp" => 1618723907.588,
"EmailAddress" => "[email protected]",
"LastUpdatedTimestamp" => 1618723907.588,
"TopicDefaultPreferences" => nil,
"TopicPreferences" => [
%{"SubscriptionStatus" => "OPT_IN", "TopicName" => "test_topic"}
],
"UnsubscribeAll" => false
}}
Thoughts?
comment created time in 2 months
push eventockam-network/meetings
commit sha 1080120fae2064d1cf01fa6113a2a6fb1e867f68
fix formatting
push time in 2 months
push eventockam-network/meetings
commit sha 1c48cc54eb6377e02676d62d048bb1304317d0b7
add 2021-04-28 community call
push time in 2 months
PR opened ex-aws/ex_aws_ses
SES API V2 includes features for list, topic, and subscription management, which can be useful for allowing a recipient to unsubscribe from a topic. This PR adds support for CRUD actions on contact list and contact resources, and for the v2 API's send email endpoint.
Examples:
ExAws.SES.create_contact_list("test_list", tags: [%{Key: "environment", Value: "test"}])
ExAws.SES.update_contact_list("test_list", topics: [%{DefaultSubscriptionStatus: "OPT_OUT", DisplayName: "test topic", TopicName: "test_topic"}])
ExAws.SES.create_contact("test_list", "[email protected]", topic_preferences: [%{TopicName: "test_topic", SubscriptionStatus: "OPT_IN"}])
ExAws.SES.send_email_v2(destination, content, "[email protected]", list_management: %{ContactListName: "test_list", TopicName: "test_topic"})
pr created time in 2 months
issue commentedeliver/edeliver
Pre_ or post_ hook in order to start an app via systemd?
There are a bunch of different hooks described on the wiki: https://github.com/edeliver/edeliver/wiki/Run-additional-build-tasks
comment created time in 2 months
push eventockam-network/meetings
commit sha 29361a12d5ce5cb45e3d40d7ae92a2c534fec92e
content: fix date
push time in 2 months
push eventockam-network/meetings
commit sha 3e0e4567068caf7ef331f6e32dfadde72c093014
content: add youtube replay
push time in 2 months
push eventockam-network/meetings
commit sha 67ab52f03d13a8213ab3a176fb8cbe8573bfe2f1
content: add march meeting
push time in 2 months
push eventockam-network/meetings
commit sha 9c0b7549324707c9d8ba6fd4b146b08b9030d14d
content: remove logo
push time in 3 months
push eventockam-network/meetings
commit sha 9d15fe920951225831d55245ecc3132800df189e
content: add meeting details
push time in 3 months
push eventockam-network/meetings
commit sha 347fba34961592c8768e3288c5743b2cd0f009f7
content: add march meeting outline
push time in 3 months