Initial commit

This commit is contained in:
Joey Kimsey
2024-08-04 21:15:59 -04:00
parent c9d1fb983f
commit 0d469501ee
695 changed files with 70184 additions and 71 deletions

View File

@ -0,0 +1,39 @@
<form action="" method="post" class="form-horizontal">
<legend>Send Email</legend>
<p>Please be very careful with this feature. This form allows you to send an email (formatted within the default site email template) to registered emails from various sources including newsletter subscribers, call to action subscribers, and all registered user accounts.</p>
<fieldset>
<div class="form-group">
<label for="mailType" class="col-lg-3 control-label">Recipients:</label>
<div class="col-lg-2">
<select class="form-control" name="mailType" id="mailType">
<option value='none' checked>none</option>
<option value='registered'>all registered users</option>
<option value='newsletter'>only newsletter opt-ins</option>
<option value='subscribers'>only CTA subscribers</option>
<option value='opt'>CTA subscribers and newsletter opt-ins</option>
<option value='all'>all available emails</option>
</select>
</div>
</div>
<div class="form-group">
<label for="mailSubject" class="col-lg-3 control-label">Subject:</label>
<div class="col-lg-2">
<input class="form-control" type="text" name="mailSubject" id="mailSubject">
</div>
</div>
<div class="form-group">
<label for="mailTitle" class="col-lg-3 control-label">Title:</label>
<div class="col-lg-2">
<input class="form-control" type="text" name="mailTitle" id="mailTitle">
</div>
</div>
<div class="form-group">
<label for="mailMessage" class="col-lg-3 control-label">Body:<br> (max:2000 characters)</label>
<div class="col-lg-6">
<textarea class="form-control" name="mailMessage" maxlength="2000" rows="10" cols="50" id="mailMessage"></textarea>
</div>
</div>
</fieldset>
<input type="hidden" name="token" value="{TOKEN}">
<button name="submit" value="submit" type="submit" class="btn btn-lg btn-primary center-block">Send</button><br>
</form>