tencentcloud-sdk-ses 3.0.583 → 3.0.585

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201002/models.rb +10 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 407d05ef020452a79c9292d53d0897a549e854b9
4
- data.tar.gz: 230da112576aebd4d59210a8dc47fa0dccb93e8f
3
+ metadata.gz: bfc8495c688b2ef88da55912378a18c64f0ec8c4
4
+ data.tar.gz: de591ec4f5cfa6a45cbc56ddec54f77d7b57c95b
5
5
  SHA512:
6
- metadata.gz: 3d5b6add5e0fb29126986db777d1dc1560213c69ec0391729166051dd9924b1cff77ac4626672a308b0e037e31a6a44bb3cd7c981baad1a64130d8aacfa580f7
7
- data.tar.gz: bda7a44962400eb7c02fe11166970a1c55e23a1c66d1e45dddef20b6d3037720d721e0b009e81c6f79792df829b553f221eb39829594f7d06d326bbd00adf7b0
6
+ metadata.gz: c64cc0193bcfcade6f03233c7109b986a889b4a278ef60cec7df9d5fb2e7a3980c11d15c5a29e6406956d260869b8b8be90732f403b5891e635a505905a582c6
7
+ data.tar.gz: 18565be2907ce5c3d7527c74ba4a2d5e25d1e86770d6924680eee3a3acc960639a18dc4cab2d2cef6f6172b05c5ca1a068322535a25c983563de744c316100b9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.583
1
+ 3.0.585
@@ -1296,6 +1296,10 @@ module TencentCloud
1296
1296
  # @type Subject: String
1297
1297
  # @param ReplyToAddresses: 邮件的“回复”电子邮件地址。可以填写您能收到邮件的邮箱地址,可以是个人邮箱。如果不填,收件人的回复邮件将会发送失败。
1298
1298
  # @type ReplyToAddresses: String
1299
+ # @param Cc: 抄送人邮箱地址,最多支持抄送20人。
1300
+ # @type Cc: Array
1301
+ # @param Bcc: 密送人邮箱地址,最多支持抄送20人。
1302
+ # @type Bcc: Array
1299
1303
  # @param Template: 使用模板发送时,填写的模板相关参数。因 Simple 已经废除使用,Template 为必填项
1300
1304
  # @type Template: :class:`Tencentcloud::Ses.v20201002.models.Template`
1301
1305
  # @param Simple: 已废弃
@@ -1307,13 +1311,15 @@ module TencentCloud
1307
1311
  # @param TriggerType: 邮件触发类型 0:非触发类,默认类型,营销类邮件、非即时类邮件等选择此类型 1:触发类,验证码等即时发送类邮件,若邮件超过一定大小,系统会自动选择非触发类型通道
1308
1312
  # @type TriggerType: Integer
1309
1313
 
1310
- attr_accessor :FromEmailAddress, :Destination, :Subject, :ReplyToAddresses, :Template, :Simple, :Attachments, :Unsubscribe, :TriggerType
1314
+ attr_accessor :FromEmailAddress, :Destination, :Subject, :ReplyToAddresses, :Cc, :Bcc, :Template, :Simple, :Attachments, :Unsubscribe, :TriggerType
1311
1315
 
1312
- def initialize(fromemailaddress=nil, destination=nil, subject=nil, replytoaddresses=nil, template=nil, simple=nil, attachments=nil, unsubscribe=nil, triggertype=nil)
1316
+ def initialize(fromemailaddress=nil, destination=nil, subject=nil, replytoaddresses=nil, cc=nil, bcc=nil, template=nil, simple=nil, attachments=nil, unsubscribe=nil, triggertype=nil)
1313
1317
  @FromEmailAddress = fromemailaddress
1314
1318
  @Destination = destination
1315
1319
  @Subject = subject
1316
1320
  @ReplyToAddresses = replytoaddresses
1321
+ @Cc = cc
1322
+ @Bcc = bcc
1317
1323
  @Template = template
1318
1324
  @Simple = simple
1319
1325
  @Attachments = attachments
@@ -1326,6 +1332,8 @@ module TencentCloud
1326
1332
  @Destination = params['Destination']
1327
1333
  @Subject = params['Subject']
1328
1334
  @ReplyToAddresses = params['ReplyToAddresses']
1335
+ @Cc = params['Cc']
1336
+ @Bcc = params['Bcc']
1329
1337
  unless params['Template'].nil?
1330
1338
  @Template = Template.new
1331
1339
  @Template.deserialize(params['Template'])
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ses
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.583
4
+ version: 3.0.585
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-02 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common