embulk-output-send_email 0.1.5 → 0.1.6
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f251dea23a21919bb585a16ff17e9639e6febdbdd49c9d255ad7525a2fa49d5
|
4
|
+
data.tar.gz: 6deb25d8ab43d7a79a9f3c77c317cec0a44858dafa9f6eeb2607df05ac883492
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 843190ae182eedd05c47a6ce0a0463106ed07049a0d641e7e6dd73680f616c79b2afe8337a030c17c041b9cb8c6cb22e4bdc44ca74c3a81580b2956b7b3f62ce
|
7
|
+
data.tar.gz: 4722a9c29ffae6c9eef38f30087d0a2e1913dd3908324649e34ccafa3c6d42241321bb59beb31f2d29c83a98cf5461568d218d2accac2e7c12ce6c136095fc7c
|
data/README.md
CHANGED
@@ -28,7 +28,43 @@ An output plugin for Embulk to send email with data
|
|
28
28
|
- **template**: If format_type is 'html', provide here the path of .html/ .txt
|
29
29
|
- **is_html**: If template is 'html' put it true, if it is 'txt' put it as false, by default it is false
|
30
30
|
|
31
|
-
```
|
31
|
+
```
|
32
|
+
NOTE: If format_type is html and path is given in field 'template', make sure - The templates should have '{{data}}' placeholder so that the data generated by send_email plugin will be put here; sample .html and .txt is shown below -
|
33
|
+
|
34
|
+
<!DOCTYPE html>
|
35
|
+
<html lang="en">
|
36
|
+
<head>
|
37
|
+
<meta charset="UTF-8">
|
38
|
+
<title>Title</title>
|
39
|
+
</head>
|
40
|
+
<body>
|
41
|
+
<header>
|
42
|
+
Hi Team,
|
43
|
+
<h3>Here is the project</h3>
|
44
|
+
</header>
|
45
|
+
<h1> hello </h1>
|
46
|
+
|
47
|
+
{{data}}
|
48
|
+
|
49
|
+
<footer>
|
50
|
+
Thanks,<br>
|
51
|
+
ABC
|
52
|
+
</footer>
|
53
|
+
</body>
|
54
|
+
</html>
|
55
|
+
|
56
|
+
-------------------------------------------
|
57
|
+
|
58
|
+
Hi John,
|
59
|
+
Here is the daily ETL data
|
60
|
+
|
61
|
+
{{data}}
|
62
|
+
|
63
|
+
Thanks,
|
64
|
+
ABC
|
65
|
+
|
66
|
+
|
67
|
+
```
|
32
68
|
|
33
69
|
## Example - columns
|
34
70
|
|
data/build.gradle
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-output-send_email
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Infoobjects Inc.
|
@@ -53,7 +53,7 @@ files:
|
|
53
53
|
- classpath/activation-1.1.jar
|
54
54
|
- classpath/commons-codec-1.10.jar
|
55
55
|
- classpath/commons-logging-1.2.jar
|
56
|
-
- classpath/embulk-output-send_email-0.1.
|
56
|
+
- classpath/embulk-output-send_email-0.1.6.jar
|
57
57
|
- classpath/google-api-client-1.26.0.jar
|
58
58
|
- classpath/google-api-client-java6-1.26.0.jar
|
59
59
|
- classpath/google-api-services-gmail-v1-rev83-1.23.0.jar
|