2013-02-22 15:41:12 -05:00
|
|
|
/**
|
2013-06-03 16:12:24 -04:00
|
|
|
This controller supports email functionality.
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-06-03 16:12:24 -04:00
|
|
|
@class AdminEmailIndexController
|
|
|
|
@extends Discourse.Controller
|
2013-02-22 15:41:12 -05:00
|
|
|
@namespace Discourse
|
|
|
|
@module Discourse
|
2013-03-05 15:39:21 -05:00
|
|
|
**/
|
2013-09-18 12:40:57 -04:00
|
|
|
Discourse.AdminEmailIndexController = Discourse.Controller.extend({
|
2013-03-05 15:39:21 -05:00
|
|
|
|
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
|
|
|
**/
|
2013-06-03 16:12:24 -04:00
|
|
|
sendTestEmailDisabled: Em.computed.empty('testEmailAddress'),
|
|
|
|
|
|
|
|
/**
|
|
|
|
Clears the 'sentTestEmail' property on successful send.
|
|
|
|
|
|
|
|
@method testEmailAddressChanged
|
|
|
|
**/
|
|
|
|
testEmailAddressChanged: function() {
|
|
|
|
this.set('sentTestEmail', false);
|
|
|
|
}.observes('testEmailAddress'),
|
|
|
|
|
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
|
|
|
|
2014-03-18 15:25:16 -04:00
|
|
|
var self = this;
|
2013-09-16 14:08:55 -04:00
|
|
|
Discourse.ajax("/admin/email/test", {
|
|
|
|
type: 'POST',
|
|
|
|
data: { email_address: this.get('testEmailAddress') }
|
|
|
|
}).then(function () {
|
2014-03-18 15:25:16 -04:00
|
|
|
self.set('sentTestEmail', true);
|
|
|
|
}).catch(function () {
|
|
|
|
bootbox.alert(I18n.t('admin.email.test_error'));
|
|
|
|
}).finally(function() {
|
|
|
|
self.set('sendingEmail', false);
|
2013-09-16 14:08:55 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2013-02-22 15:41:12 -05:00
|
|
|
}
|
2013-03-05 15:39:21 -05:00
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
});
|