我正在使用甜蜜警报来显示输入弹出窗口。我想将输入的电子邮件添加为 mailchimp 订阅者。
我对弹出窗口没有任何问题,但是有人可以帮助我使用 webhook 或 API 调用来添加订阅者吗?
我将这个示例用于输入弹出窗口:
swal({
title: "An input!",
text: "Write something interesting:",
type: "input",
showCancelButton: true,
closeOnConfirm: false,
animation: "slide-from-top",
inputPlaceholder: "Write something" },
function(inputValue){
if (inputValue === false)
return false;
if (inputValue === "") {
swal.showInputError("You need to write something!");
return false }
swal("Nice!", "You wrote: " + inputValue, "success");
});
谢谢,戴夫