So I'm implement mandrill in asp classic. Everything was fine so far, the mail was sent but I got a problem. When I send a parameter with special character, the content in email got converted. For example, The value I sent to mandrill is Göran
but in email, it got convert to Göran
.
I have tried to change CodePage session but it didn't work. Using ajax jQuery and send the same value, the email look fine. Do I need to set up something in request
Response.CodePage = 65001
Session.CodePage = 65001
Set HttpReq = Server.CreateObject("MSXML2.ServerXMLHTTP")
HttpReq.open "POST", "https://mandrillapp.com/api/1.0/messages/send-template.json", False
HttpReq.setRequestHeader "Content-Type", "application/json"
HttpReq.send(mandrillData)