|
NAMEPaws::SES::SendEmail - Arguments for method SendEmail on Paws::SESDESCRIPTIONThis class represents the parameters used for calling the method SendEmail on the Amazon Simple Email Service service. Use the attributes of this class as arguments to method SendEmail.You shouln't make instances of this class. Each attribute should be used as a named argument in the call to SendEmail. As an example: $service_obj->SendEmail(Att1 => $value1, Att2 => $value2, ...); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. ATTRIBUTESREQUIRED Destination => Paws::SES::DestinationThe destination for this email, composed of To:, CC:, and BCC: fields.REQUIRED Message => Paws::SES::MessageThe message to be sent.ReplyToAddresses => ArrayRef[Str]The reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply.ReturnPath => StrThe email address to which bounces and complaints are to be forwarded when feedback forwarding is enabled. If the message cannot be delivered to the recipient, then an error message will be returned from the recipient's ISP; this message will then be forwarded to the email address specified by the "ReturnPath" parameter. The "ReturnPath" parameter is never overwritten. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES.ReturnPathArn => StrThis parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the "ReturnPath" parameter.For example, if the owner of "example.com" (which has ARN "arn:aws:ses:us-east-1:123456789012:identity/example.com") attaches a policy to it that authorizes you to use "feedback@example.com", then you would specify the "ReturnPathArn" to be "arn:aws:ses:us-east-1:123456789012:identity/example.com", and the "ReturnPath" to be "feedback@example.com". For more information about sending authorization, see the Amazon SES Developer Guide. REQUIRED Source => StrThe email address that is sending the email. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES. For information about verifying identities, see the Amazon SES Developer Guide.If you are sending on behalf of another user and have been permitted to do so by a sending authorization policy, then you must also specify the "SourceArn" parameter. For more information about sending authorization, see the Amazon SES Developer Guide. In all cases, the email address must be 7-bit ASCII. If the text must contain any other characters, then you must use MIME encoded-word syntax (RFC 2047) instead of a literal string. MIME encoded-word syntax uses the following form: "=?charset?encoding?encoded-text?=". For more information, see RFC 2047. SourceArn => StrThis parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to send for the email address specified in the "Source" parameter.For example, if the owner of "example.com" (which has ARN "arn:aws:ses:us-east-1:123456789012:identity/example.com") attaches a policy to it that authorizes you to send from "user@example.com", then you would specify the "SourceArn" to be "arn:aws:ses:us-east-1:123456789012:identity/example.com", and the "Source" to be "user@example.com". For more information about sending authorization, see the Amazon SES Developer Guide. SEE ALSOThis class forms part of Paws, documenting arguments for method SendEmail in Paws::SESBUGS and CONTRIBUTIONSThe source code is located here: https://github.com/pplu/aws-sdk-perlPlease report bugs to: https://github.com/pplu/aws-sdk-perl/issues
Visit the GSP FreeBSD Man Page Interface. |