You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/mandrill/api.rb
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -797,17 +797,18 @@ def initialize(master)
797
797
# - [String] signing_domain a custom domain to use for SPF/DKIM signing instead of mandrill (for "via" or "on behalf of" in email clients)
798
798
# - [String] return_path_domain a custom domain to use for the messages's return-path
799
799
# - [Boolean] merge whether to evaluate merge tags in the message. Will automatically be set to true if either merge_vars or global_merge_vars are provided.
800
+
# - [String] merge_language the merge tag language to use when evaluating merge tags, either mailchimp or handlebars
800
801
# - [Array] global_merge_vars global merge variables to use for all recipients. You can override these per recipient.
801
802
# - [Hash] global_merge_vars[] a single global merge variable
802
803
# - [String] name the global merge variable's name. Merge variable names are case-insensitive and may not start with _
803
-
# - [String] content the global merge variable's content
804
+
# - [Mixed] content the global merge variable's content
804
805
# - [Array] merge_vars per-recipient merge variables, which override global merge variables with the same name.
# - [String] rcpt the email address of the recipient that the merge variables should apply to
807
808
# - [Array] vars the recipient's merge variables
808
809
# - [Hash] vars[] a single merge variable
809
810
# - [String] name the merge variable's name. Merge variable names are case-insensitive and may not start with _
810
-
# - [String] content the merge variable's content
811
+
# - [Mixed] content the merge variable's content
811
812
# - [Array] tags an array of string to tag the message with. Stats are accumulated using tags, though we only store the first 100 we see, so this should not be unique or change frequently. Tags should be 50 characters or less. Any tags starting with an underscore are reserved for internal use and will cause errors.
812
813
# - [String] tags[] a single tag - must not start with an underscore
813
814
# - [String] subaccount the unique id of a subaccount for this message - must already exist or will fail with an error
# - [String] signing_domain a custom domain to use for SPF/DKIM signing instead of mandrill (for "via" or "on behalf of" in email clients)
875
876
# - [String] return_path_domain a custom domain to use for the messages's return-path
876
877
# - [Boolean] merge whether to evaluate merge tags in the message. Will automatically be set to true if either merge_vars or global_merge_vars are provided.
878
+
# - [String] merge_language the merge tag language to use when evaluating merge tags, either mailchimp or handlebars
877
879
# - [Array] global_merge_vars global merge variables to use for all recipients. You can override these per recipient.
878
880
# - [Hash] global_merge_vars[] a single global merge variable
879
881
# - [String] name the global merge variable's name. Merge variable names are case-insensitive and may not start with _
880
-
# - [String] content the global merge variable's content
882
+
# - [Mixed] content the global merge variable's content
881
883
# - [Array] merge_vars per-recipient merge variables, which override global merge variables with the same name.
# - [String] rcpt the email address of the recipient that the merge variables should apply to
884
886
# - [Array] vars the recipient's merge variables
885
887
# - [Hash] vars[] a single merge variable
886
888
# - [String] name the merge variable's name. Merge variable names are case-insensitive and may not start with _
887
-
# - [String] content the merge variable's content
889
+
# - [Mixed] content the merge variable's content
888
890
# - [Array] tags an array of string to tag the message with. Stats are accumulated using tags, though we only store the first 100 we see, so this should not be unique or change frequently. Tags should be 50 characters or less. Any tags starting with an underscore are reserved for internal use and will cause errors.
889
891
# - [String] tags[] a single tag - must not start with an underscore
890
892
# - [String] subaccount the unique id of a subaccount for this message - must already exist or will fail with an error
0 commit comments