Is it possible to perform a HTTP POST from a HTML email?

Solution 1:

For information retrieval, including links made with <a href>, only GET can be used.

If you want POST for whatever reason, you'll have to create a <form method="post"> with a submit button. (And think carefully about whether you need it; it's an ugly way to track users, and it's uncacheable.)