mailslurp_client 8.2.4 → 8.2.5
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 +4 -0
- data/lib/mailslurp_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb26b371795f3c3f22153005061495dfdfe9aafbfb19343c9e5fd0a2cad8f08c
|
4
|
+
data.tar.gz: 6c1f6040f0fda56d86d3f3f99f3fba6323e296310bd5979426c546f0a0e6a34b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2863d470ac5561ccd4d3f752cb2c5b91e5ec31c55e12cf04a72cd879ad43e0cade733e789554be4ca6857ee33a558b1fadf73bc9f8e7e6a6d3d348fc56dbeda9
|
7
|
+
data.tar.gz: c2bce2df5ca712385a06876be952313c369dd1324a2baa48917a253acdd6a5e465a214d1bed6dccf22274c7fd961c4a5748fbf7cb37b119dcd6d5b7d757ebd73
|
data/README.md
CHANGED
@@ -13,11 +13,13 @@ MailSlurp is an email API service that lets you create real email addresses in c
|
|
13
13
|
## Get started
|
14
14
|
|
15
15
|
::: tip
|
16
|
+
|
16
17
|
This section describes how to get up and running with the Ruby client.
|
17
18
|
|
18
19
|
See the [examples page](https://www.mailslurp.com/examples/) for more examples and use with common frameworks such as Rails and RSpec.
|
19
20
|
|
20
21
|
See the method documentation for a [list of all functions](./docs)
|
22
|
+
|
21
23
|
:::
|
22
24
|
|
23
25
|
### Create API Key
|
@@ -169,7 +171,9 @@ expect(email.body).to include("Your email body")
|
|
169
171
|
You can send attachments by first uploading files with the `AttachmentControllerApi` then using the returned attachment IDs in the send email method.
|
170
172
|
|
171
173
|
::: tip
|
174
|
+
|
172
175
|
MailSlurp endpoints use base64 string encoding for upload and download files. To encode or decode strings in Ruby make sure you use the **strict** variables that avoid added newlines.
|
176
|
+
|
173
177
|
:::
|
174
178
|
|
175
179
|
#### Upload and send
|