- AWS_POST={ "FROM" : input.FROM, "SUBJECT" : input.SUBJECT_field, "BODY" : BODY, "SUBSCRIBERS" : SUBSCRIBERS };
From, subject, and email body are self explanatory. Subscribers is a JSON string containing email addresses and a user's record ID number.
So for my 200 email test, this part of the post request is 200 emails long. Maybe there's some memory limitation or maximum string length that can be used with a post like this?
John M. Whitney