sfmc_emailer 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- metadata +23 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 784c3443d92f1e20640d6df8652b028099b7e88c7db36dfc35655cfb7efd158e
|
|
4
|
+
data.tar.gz: bc658a904d420d4183a8b06725bf4ea3ff3ef04650fb323c3d15d428191a79a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ab0333fea8c05c3951b6c37ec09b51cccb2e252d209b42207cd4461da1bdc659d8d7e2c21eb922a55305ddcd43198b52042670722eab6e9bd5d45d55732c20b
|
|
7
|
+
data.tar.gz: 07b1be656a13c724cc1793975b622eac445a2676a803a497a4cccb879e5d44abae993a82d8960d4ce8fdb6bf1b6768cdb74e3c4e1cdd4c3a836c346c9699a292
|
data/README.md
CHANGED
|
@@ -47,9 +47,9 @@ SFMC::Transactional::SendDefinition.refresh 'email_name'
|
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
### Creating a Transactional Email Send Definition
|
|
50
|
-
<b>Note:</b> The first time an email is sent a send definition for it will be created with the default values. This definition
|
|
50
|
+
<b>Note:</b> The first time an email is sent a send definition for it will be created with the default values. This definition takes about a minute to actually become active, so try sending again after that. You can also manually create a send definition using:
|
|
51
51
|
```ruby
|
|
52
|
-
SFMC::Transactional::SendDefinition(
|
|
52
|
+
SFMC::Transactional::SendDefinition.create(
|
|
53
53
|
definition_key: 'definition_key',
|
|
54
54
|
customer_key: 'customer_key',
|
|
55
55
|
send_classification: 'send_classification',
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sfmc_emailer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Angel Ruiz-Bates
|
|
@@ -50,6 +50,26 @@ dependencies:
|
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: 3.18.1
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
name: rspec
|
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: 3.11.0
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 3.11.0
|
|
63
|
+
type: :development
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - "~>"
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: 3.11.0
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: 3.11.0
|
|
53
73
|
description: API wrapper for Salesforce Marketing Cloud's Transactional and Triggered
|
|
54
74
|
Send APIs
|
|
55
75
|
email: angeljrbt@gmail.com
|
|
@@ -68,7 +88,7 @@ files:
|
|
|
68
88
|
- lib/sfmc/transactional/send_definition.rb
|
|
69
89
|
- lib/sfmc/triggered/email.rb
|
|
70
90
|
- lib/sfmc_emailer.rb
|
|
71
|
-
homepage: https://
|
|
91
|
+
homepage: https://github.com/angeljruiz/SFMC-Email-Client
|
|
72
92
|
licenses:
|
|
73
93
|
- MIT
|
|
74
94
|
metadata: {}
|
|
@@ -87,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
107
|
- !ruby/object:Gem::Version
|
|
88
108
|
version: '0'
|
|
89
109
|
requirements: []
|
|
90
|
-
rubygems_version: 3.1.
|
|
110
|
+
rubygems_version: 3.1.4
|
|
91
111
|
signing_key:
|
|
92
112
|
specification_version: 4
|
|
93
113
|
summary: API wrapper for SFMC
|