我的问题是当我尝试通过 ajax 测试发送 html 时事通讯时。html 时事通讯电子邮件内容的格式不正确。
要推送到 ajaxcall.php 的原始 html 时事通讯内容由 html 标签、css 等组成。
$.ajax({
url: "ajaxcall.php",
type: "POST",
data: 'toEmail=' + $("#toemail").val() + '&Subject=' + $("input[name='subject']").val() + '&Body=' + body,
timeout: 8000,
beforeSend: function(){ },
...
...
我相信需要做一些编码解码或条带化?utf? 在 ajax 发送端和 ajaxcall.php 端?