This is a problem with large URLs. What is the maximum length of a URL in different browsers?
This works using the GET method.
<form action="https://mail.google.com/a/domain/" method="get" target="_blank"> <input type="hidden" name="view" value="cm"> <input type="hidden" name="su" value="SUBJECT HERE"> <input type="hidden" name="fs" value="1"> <input type="hidden" name="tf" value="1"> <input type="hidden" name="bcc" value="URL LIMIT EXCEEDED<Email list to large>"> <input type="submit" value="Submit"> </form>
This does not work using the POST method, which it tries, but just gets to the point and stops
<form action="https://mail.google.com/a/domain/" method="post" target="_blank"> <input type="hidden" name="view" value="cm"> <input type="hidden" name="su" value="SUBJECT HERE"> <input type="hidden" name="fs" value="1"> <input type="hidden" name="tf" value="1"> <input type="hidden" name="bcc" value="URL LIMIT EXCEEDED<Email list to large>"> <input type="submit" value="Submit"> </form>
DigitalNinja Nov 03 '15 at 2:01 2015-11-03 02:01
source share