mail compose option



Step one:
/templates/base  mail_box_compose_message.html

around line 85-91 find this

<div class="messages_options">
<label><input type="checkbox" id="to_mail"/>__send_copy_to__</label>
<br />
<label><input type="checkbox" id="to_my_mail"/>__send_copy_my__</label>
<br />
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
</div>

and change it to this

<div class="message_actions">
<div class="messages_options">
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
</div>


Step two: REPLAY page
/templates/base    mail_box_replay_message.html

around line 57-63 find this

<div class="messages_options">
<label><input type="checkbox" id="to_mail"/>__send_copy_to__</label>
<br />
<label><input type="checkbox" id="to_my_mail"/>__send_copy_my__</label>
<br />
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
</div>

change it to this

<div class="messages_options">
<label><input type="checkbox" id="notify_mail"/>__notify__</label>
</div>


how to make the "notify by email" option a defautl selection

find :

<label><input type="checkbox" id="notify_mail"/>__notify__</label>

change to:

<label><input type="checkbox" id="notify_mail" checked/>__notify__</label>

Quote · 12 Mar 2010

I liked the concepts but I still wanted this feature for myself and other Admins. So I added a conditional as shown below! Works great!!! Thanks!!!

  <div class="messages_options">
  <?if(isAdmin()){?>
   <label><input type="checkbox" id="to_mail"/>__send_copy_to__</label>
   <br />
   <label><input type="checkbox" id="to_my_mail"/>__send_copy_my__</label>
   <br />
  <?}?>
   <label><input type="checkbox" id="notify_mail" checked/>__notify__</label>
  </div>

Quote · 11 Apr 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.