2018-06-15 11:03:24 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2015-08-11 12:27:07 -04:00
|
|
|
export default Ember.Controller.extend({
|
2013-02-21 12:58:21 -05:00
|
|
|
/**
|
2013-02-22 15:41:12 -05:00
|
|
|
Is the "send test email" button disabled?
|
2013-02-21 12:58:21 -05:00
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
@property sendTestEmailDisabled
|
2013-03-05 15:39:21 -05:00
|
|
|
**/
|
2018-06-15 11:03:24 -04:00
|
|
|
sendTestEmailDisabled: Em.computed.empty("testEmailAddress"),
|
2013-06-03 16:12:24 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
Clears the 'sentTestEmail' property on successful send.
|
|
|
|
|
|
|
|
@method testEmailAddressChanged
|
|
|
|
**/
|
|
|
|
testEmailAddressChanged: function() {
|
2018-06-15 11:03:24 -04:00
|
|
|
this.set("sentTestEmail", false);
|
|
|
|
}.observes("testEmailAddress"),
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-09-16 14:08:55 -04:00
|
|
|
actions: {
|
|
|
|
/**
|
|
|
|
Sends a test email to the currently entered email address
|
|
|
|
|
|
|
|
@method sendTestEmail
|
|
|
|
**/
|
|
|
|
sendTestEmail: function() {
|
2014-03-18 15:25:16 -04:00
|
|
|
this.setProperties({
|
|
|
|
sendingEmail: true,
|
|
|
|
sentTestEmail: false
|
|
|
|
});
|
2013-09-16 14:08:55 -04:00
|
|
|
|
2016-06-30 13:55:44 -04:00
|
|
|
ajax("/admin/email/test", {
|
2018-06-15 11:03:24 -04:00
|
|
|
type: "POST",
|
|
|
|
data: { email_address: this.get("testEmailAddress") }
|
|
|
|
})
|
2018-08-29 17:14:16 -04:00
|
|
|
.then(response =>
|
|
|
|
this.set("sentTestEmailMessage", response.send_test_email_message)
|
2018-06-15 11:03:24 -04:00
|
|
|
)
|
2018-08-29 17:14:16 -04:00
|
|
|
.catch(e => {
|
|
|
|
if (e.responseJSON && e.responseJSON.errors) {
|
|
|
|
bootbox.alert(
|
|
|
|
I18n.t("admin.email.error", {
|
|
|
|
server_error: e.responseJSON.errors[0]
|
|
|
|
})
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("admin.email.test_error"));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.finally(() => this.set("sendingEmail", false));
|
2013-09-16 14:08:55 -04:00
|
|
|
}
|
2013-02-22 15:41:12 -05:00
|
|
|
}
|
|
|
|
});
|