mailqun 0.2.0 → 0.2.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/mailqun +6 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6e73b797d5cc6e861efd887d19cbcb1877256cf
|
|
4
|
+
data.tar.gz: 503baa70401bc9167d0a22335163ae9b18e079ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3a05996b4c7e8ab62883ae43810cfeda8d0c36850080e4a93b541b67b15b4372019fc9b968ece63877e35311b89ea0946471a2dae83490c80940fd0d7a7cc93
|
|
7
|
+
data.tar.gz: aec4432e18c85b805af196d01a845267e82e26be5bf26e09e71509684bd39508241ff8c7590c7ff40897c490263eb0c9e066999b981a509e80daea22b5bc50a4
|
data/mailqun
CHANGED
|
@@ -143,10 +143,15 @@ OptionParser.new do |opts|
|
|
|
143
143
|
end
|
|
144
144
|
|
|
145
145
|
opts.on('-t [TO]', '--to [TO]', String,
|
|
146
|
-
'Address
|
|
146
|
+
'Address(es) the mail was sent to') do |t|
|
|
147
147
|
@options.to = t
|
|
148
148
|
end
|
|
149
149
|
|
|
150
|
+
opts.on('-r [RECIPIENT]', '--recipient [RECEIVER]', String,
|
|
151
|
+
'Address of the recipient') do |t|
|
|
152
|
+
@options.recipient = t
|
|
153
|
+
end
|
|
154
|
+
|
|
150
155
|
opts.on('-s [SUBJECT]', '--subject [SUBJECT]', String,
|
|
151
156
|
'Subject of mail') do |s|
|
|
152
157
|
@options.subject = s
|