我正在使用twilio试用帐户发送邮件,并生成短信日志。 我想从我的twilio试用帐户中删除所有短信日志。 请帮帮我。
答案 0 :(得分:1)
您可以使用PHP帮助程序库来编辑邮件正文,或删除整个邮件资源:
var defs = svg.append("defs");
var filter = defs.append("filter")
.attr("id", "drop-shadow")
.attr("height", "130%");
// SourceAlpha refers to opacity of graphic that this filter will be applied to
// convolve that with a Gaussian with standard deviation 3 and store result
// in blur
var colormatrix = "0 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 1 1 1 1";
filter.append("feColorMatrix")
.attr('type','matrix')
//.attr("values", colormatrix);
filter.append("feGaussianBlur")
.attr("stdDeviation", 2)
.attr("result", "coloredBlur");
// translate output of Gaussian blur to the right and downwards with 2px
// store result in offsetBlur
// overlay original SourceGraphic over translated blurred opacity by using
// feMerge filter. Order of specifying inputs is important!
var feMerge = filter.append("feMerge");
feMerge.append("feMergeNode")
.attr("in", "coloredBlur")
feMerge.append("feMergeNode")
.attr("in", "SourceGraphic");
有关删除邮件的详细信息可以是found in our docs。
希望有所帮助。