Prefilling Large Volumes Of Body Text In Gmail Compose Getting A Request Uri Too Long Error
Solution 1:
I don't have enough karma to comment on Victor's answer itself, but no, you cannot POST to Gmail's compose window. I tried it myself and just got my regular old Gmail home screen, not the compose screen and certainly not the compose screen with the values filled in as the OP wanted.
It's too bad too, because it was a good idea to get loads of info into a Gmail compose window. Would anyone on the Gmail team care to address this issue?
Solution 2:
Solution 3:
This is the problem with large URL's What is the maximum length of a URL in different browsers?
This works using Method GET
<form action="https://mail.google.com/a/domain/" method="get" target="_blank">
<inputtype="hidden" name="view" value="cm">
<inputtype="hidden" name="su" value="SUBJECT HERE">
<inputtype="hidden" name="fs" value="1">
<inputtype="hidden" name="tf" value="1">
<inputtype="hidden" name="bcc" value="URL LIMIT EXCEEDED<Email list to large>">
<inputtype="submit" value="Submit">
</form>
This doesn't work using Method POST it tries but just gets to a point and stops
<form action="https://mail.google.com/a/domain/" method="post" target="_blank">
<inputtype="hidden" name="view" value="cm">
<inputtype="hidden" name="su" value="SUBJECT HERE">
<inputtype="hidden" name="fs" value="1">
<inputtype="hidden" name="tf" value="1">
<inputtype="hidden" name="bcc" value="URL LIMIT EXCEEDED<Email list to large>">
<inputtype="submit" value="Submit">
</form>
Solution 4:
Why not have a form (method = post, target = blank) with hidden fields that represent the variables you need to send. Then post that form
Post a Comment for "Prefilling Large Volumes Of Body Text In Gmail Compose Getting A Request Uri Too Long Error"