forked from AamAadmiParty/mass-emailer-sendy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoresponders-create.php
273 lines (243 loc) · 12.1 KB
/
autoresponders-create.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?php include('includes/header.php');?>
<?php include('includes/login/auth.php');?>
<?php include('includes/ares/main.php');?>
<?php
if(get_app_info('is_sub_user'))
{
if(get_app_info('app')!=get_app_info('restricted_to_app'))
{
echo '<script type="text/javascript">window.location="'.get_app_info('path').'/list?i='.get_app_info('restricted_to_app').'"</script>';
exit;
}
}
?>
<script src="<?php echo get_app_info('path');?>/js/redactor/redactor.min.js?4"></script>
<script src="<?php echo get_app_info('path');?>/js/redactor/fontcolor.js?4"></script>
<link rel="stylesheet" href="<?php echo get_app_info('path');?>/js/redactor/redactor.css?4" />
<script src="<?php echo get_app_info('path');?>/js/create/editor.js?2"></script>
<!-- Validation -->
<script type="text/javascript" src="<?php echo get_app_info('path');?>/js/validate.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#edit-form").validate({
rules: {
subject: {
required: true
},
from_name: {
required: true
},
from_email: {
required: true,
email: true
},
reply_to: {
required: true,
email: true
},
html: {
required: true
},
time_condition_number: {
required: true
}
},
messages: {
subject: "<?php echo addslashes(_('The subject of your email is required'));?>",
from_name: "<?php echo addslashes(_('\'From name\' is required'));?>",
from_email: "<?php echo addslashes(_('A valid \'From email\' is required'));?>",
reply_to: "<?php echo addslashes(_('A valid \'Reply to\' email is required'));?>",
html: "<?php echo addslashes(_('Your HTML code is required'));?>",
time_condition_number: "<?php echo addslashes(_('Please specify a number'));?>"
}
});
//drip
$("#time_condition_intervals").change(function(){
if($(this).find(":selected").text()=='<?php echo _('immediately');?>')
$("#time_condition_number").hide();
else
$("#time_condition_number").show();
});
//others
$("#time_condition_beforeafter").change(function(){
if($(this).find(":selected").text()=='<?php echo _('on');?>')
{
$("#time_condition_number").hide();
$("#time_condition_intervals").hide();
}
else
{
$("#time_condition_number").show();
$("#time_condition_intervals").show();
}
});
});
</script>
<div class="row-fluid">
<div class="span2">
<?php include('includes/sidebar.php');?>
</div>
<div class="span10">
<div class="row-fluid">
<div>
<p class="lead"><?php echo get_app_data('app_name');?></p>
</div>
<h2><?php echo _('Create autoresponder email');?></h2><?php echo _('For');?>: <a href="<?php echo get_app_info('path')?>/autoresponders-emails?i=<?php echo get_app_info('app')?>&a=<?php echo $_GET['a']?>" title=""><span class="label label-info"><?php echo get_ares_data('name');?></span></a> <span>(<?php echo get_ares_type_name('type');?>)</span> <br/><br/>
</div>
<form action="<?php echo get_app_info('path')?>/includes/ares/save-autoresponder-email.php?i=<?php echo get_app_info('app')?>&a=<?php echo $_GET['a']?>" method="POST" accept-charset="utf-8" class="form-vertical" id="edit-form" enctype="multipart/form-data">
<div class="row-fluid">
<div class="span12 well">
<?php if(get_ares_data('type')==1):?>
<i class="icon-time"></i> <?php echo _('Send email');?> <input type="text" name="time_condition_number" id="time_condition_number" placeholder="10" style="width: 20px; text-align:center; margin-top: 8px; height: 19px;">
<select name="time_condition_intervals" id="time_condition_intervals" style="width: auto; margin-top: 7px;">
<option value="immediately"><?php echo _('immediately');?></option>
<option value="minutes"><?php echo _('minutes');?></option>
<option value="hours"><?php echo _('hours');?></option>
<option value="days"><?php echo _('days');?></option>
<option value="weeks"><?php echo _('weeks');?></option>
<option value="months"><?php echo _('months');?></option>
</select>
<?php echo _('after they subscribe');?>
<input type="hidden" name="time_condition_beforeafter" id="time_condition_beforeafter" value="after">
<script type="text/javascript">
$("#time_condition_number").hide();
</script>
<?php else:?>
<i class="icon-time"></i> <?php echo _('Send email');?> <input type="text" name="time_condition_number" id="time_condition_number" placeholder="10" style="width: 20px; text-align:center; margin-top: 8px; height: 19px;">
<select name="time_condition_intervals" id="time_condition_intervals" style="width: auto; margin-top: 7px;">
<option value="minutes"><?php echo _('minutes');?></option>
<option value="hours"><?php echo _('hours');?></option>
<option value="days"><?php echo _('days');?></option>
<option value="weeks"><?php echo _('weeks');?></option>
<option value="months"><?php echo _('months');?></option>
</select>
<select name="time_condition_beforeafter" id="time_condition_beforeafter" style="width: auto; margin-top: 7px;">
<option value="on"><?php echo _('on');?></option>
<option value="before"><?php echo _('before');?></option>
<option value="after"><?php echo _('after');?></option>
</select>
<?php echo _('each subscriber\'s');?> '<?php echo get_ares_data('custom_field');?>'
<script type="text/javascript">
$("#time_condition_number").hide();
$("#time_condition_intervals").hide();
</script>
<?php endif;?>
</div>
</div>
<div class="row-fluid">
<div class="span3">
<label class="control-label" for="subject"><?php echo _('Subject');?></label>
<div class="control-group">
<div class="controls">
<input type="text" class="input-xlarge" id="subject" name="subject" placeholder="<?php echo _('Subject of this email');?>">
</div>
</div>
<label class="control-label" for="from_name"><?php echo _('From name');?></label>
<div class="control-group">
<div class="controls">
<input type="text" class="input-xlarge" id="from_name" name="from_name" placeholder="<?php echo _('From name');?>" value="<?php echo get_app_data('from_name');?>">
</div>
</div>
<label class="control-label" for="from_email"><?php echo _('From email');?></label>
<div class="control-group">
<div class="controls">
<input type="text" class="input-xlarge" <?php if(get_app_info('is_sub_user')) echo 'readonly="readonly"';?> id="from_email" name="from_email" placeholder="<?php echo _('From email');?>" value="<?php echo get_app_data('from_email');?>">
</div>
</div>
<label class="control-label" for="reply_to"><?php echo _('Reply to email');?></label>
<div class="control-group">
<div class="controls">
<input type="text" class="input-xlarge" id="reply_to" name="reply_to" placeholder="<?php echo _('Reply to email');?>" value="<?php echo get_app_data('reply_to');?>">
</div>
</div>
<label class="control-label" for="plain"><?php echo _('Plain text');?></label>
<div class="control-group">
<div class="controls">
<textarea class="input-xlarge" id="plain" name="plain" rows="10" placeholder="<?php echo _('Plain text of this email');?>"></textarea>
</div>
</div>
<label class="control-label" for="attachments"><?php echo _('Attachments');?></label>
<div class="control-group">
<div class="controls">
<input type="file" id="attachments" name="attachments[]" multiple />
</div>
</div>
<br/>
<input type="hidden" name="ares_type" value="<?php echo get_ares_data('type');?>">
<button type="submit" class="btn btn-inverse"><i class="icon-ok icon-white"></i> <?php echo _('Save autoresponder email');?></button>
<br/><br/>
<a href="<?php echo get_app_info('path');?>/autoresponders-list?i=<?php echo $_GET['i']?>&l=<?php echo get_ares_data('list');?>" title=""><i class="icon icon-chevron-left"></i> <?php echo _('Back to autoresponders list');?></a>
</div>
<div class="span9">
<p>
<label class="control-label" for="html"><?php echo _('HTML code');?></label>
<div class="btn-group">
<button class="btn" id="toggle-wysiwyg"><?php echo _('Save and switch to HTML editor');?></button>
<span class="wysiwyg-note"><?php echo _('Switch to HTML editor if the WYSIWYG editor is causing your newsletter to look weird.');?></span>
<script type="text/javascript">
$("#toggle-wysiwyg").click(function(e){
e.preventDefault();
$('<input>').attr({
type: 'hidden',
id: 'wysiwyg',
name: 'wysiwyg',
value: '0',
}).appendTo("#edit-form");
$('<input>').attr({
type: 'hidden',
id: 'w_clicked',
name: 'w_clicked',
value: '1',
}).appendTo("#edit-form");
$("#subject").rules("remove");
$("#html").rules("remove");
if($("#subject").val()=="") $("#subject").val("<?php echo _('Untitled');?>");
$("#edit-form").submit();
});
</script>
</div>
<br/>
<div class="control-group">
<div class="controls">
<textarea class="input-xlarge" id="html" name="html" rows="10" placeholder="Email content"></textarea>
</div>
</div>
<p><?php echo _('Use the following tags in your subject, plain text or HTML code and they\'ll automatically be formatted when your campaign is sent. For web version and unsubscribe tags, you can style them with inline CSS.');?></p><br/>
<div class="row-fluid">
<div class="span6">
<h3><?php echo _('Essential tags (HTML only)');?></h3>
<?php echo _('The following tags can only be used on the HTML version');?><br/><br/>
<p><strong><?php echo _('Webversion link');?>: </strong><br/><code class="sel"><webversion><?php echo _('View web version');?></webversion></code></p>
<p><strong><?php echo _('Unsubscribe link');?>: </strong><br/><code class="sel"><unsubscribe><?php echo _('Unsubscribe here');?></unsubscribe></code></p>
<br/>
<h3><?php echo _('Essential tags');?></h3>
<?php echo _('The following tags can be used on both Plain text or HTML version');?><br/><br/>
<p><strong><?php echo _('Webversion link');?>: </strong><br/><code class="sel">[webversion]</code></p>
<p><strong><?php echo _('Unsubscribe link');?>: </strong><br/><code class="sel">[unsubscribe]</code></p>
<br/>
</div>
<div class="span6">
<h3><?php echo _('Personalization tags');?></h3>
<?php echo _('The following tags can be used on both Plain text or HTML version');?><br/><br/>
<p><strong><?php echo _('Name');?>: </strong><br/><code class="sel">[Name,fallback=]</code></p>
<p><strong><?php echo _('Email');?>: </strong><br/><code class="sel">[Email]</code></p>
<br/>
<h3><?php echo _('Custom field tags');?></h3><br/>
<p><?php echo _('You can also use custom fields to personalize your newsletter, eg.');?> <code class="sel">[Country,fallback=anywhere in the world]</code>.</p>
<p><?php echo _('To manage or get a reference of tags from custom fields, go to any subscriber list. Then click \'Custom fields\' button at the top right.');?></p>
</div>
<script type="text/javascript">
$(document).ready(function() {
$(".sel").click(function(){
$(this).selectText();
});
});
</script>
</div>
</p>
</div>
</div>
</form>
</div>
</div>
<?php include('includes/footer.php');?>