Всем привет, есть следующая форма отправки данных на vue:
submitForm: function (e) {
var t = this;
this.$refs[e].validate((function (e) {
if (!e) return !1;
t.btnLoading = !0, l["a"].refund({
payId: t.payId,
type: t.model.type,
amount: t.model.amount
}).then((function (e) {
var a = e.data;
a.status ? (t.$notify({
title: "Success",
message: "This is a success message",
type: "success"
}), t.$emit("success", {})) : t.$notify.error({
title: "Error",
message: a.errors.join("<br>"),
dangerouslyUseHTMLString: !0
}), t.btnLoading = !1
}))
}))
}
Как сделать чтобы если отправка успешна, отправлять письмо на почту (любую)?