OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
old_sendy
/
js
/
create
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/12/2024 09:29:44 AM
rwxr-xr-x
📄
editor.php
1.22 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
main.php
9.56 KB
05/19/2025 10:07:16 AM
rw-r--r--
Editing: main.php
Close
<script type="text/javascript"> $(document).ready(function() { //send test email $("#test-form").submit(function(e){ e.preventDefault(); var $form = $(this), test_email = $form.find('input[name="test_email"]').val(), campaign_id = $form.find('input[name="cid"]').val(), webversion = $form.find('input[name="webversion"]').val(), display_errors = $form.find('input[name="display_errors"]').val(), url = $form.attr('action'); //validate email AtPos = test_email.indexOf("@") StopPos = test_email.lastIndexOf(".") if(test_email=='') { $("#test_email").effect("shake", { times:3 }, 60); $("#test-send-btn").effect("shake", { times:3 }, 60); } else if (AtPos == -1 || StopPos == -1) { $("#test_email").effect("shake", { times:3 }, 60); $("#test-send-btn").effect("shake", { times:3 }, 60); } else { $("#test-send-btn").html("<img src=\"<?php echo $loader;?>\" class=\"edit-loader\" style=\"display:block;\"/> <?php echo _('Sending');?>..."); $("#test-send, #test-send-error, #test-send-error2").css("display", "none"); $.post(url, { test_email: test_email, campaign_id: campaign_id, webversion: webversion, display_errors: display_errors }, function(data) { data_array = data.split(","); all_ok = 'ok'; for(var i=0; i<data_array.length-1; i++) if(data_array[i]!='ok') all_ok = 'failed'; if(all_ok=='ok') { $("#test-send").css("display", "block"); $("#test-send-error").css("display", "none"); $("#test-send-error2").css("display", "none"); $("#test-send-btn").html("<i class=\"icon icon-envelope-alt\"></i> <?php echo _('Test send this newsletter');?>"); } else { $("#test-send").css("display", "none"); $("#test-send-error").css("display", "none"); $("#test-send-error2").css("display", "block"); $("#test-send-btn").html("<i class=\"icon icon-envelope-alt\"></i> <?php echo _('Test send this newsletter');?>"); //Show more info & instructions if user's Amazon SES accont is suspended by Amazon actual_msg = data.split(": "); if(actual_msg[2]=="Sending suspended for this account. For more information, please check the inbox of the email address associated with your AWS account.") { suspension_msg = "<strong>"+data+"</strong><br/><br/><?php echo _('Please find Amazon\'s email in your inbox as well as spam folder. They will include a reason for the suspension. You will need to reply to that email in order to re-activate your account. If you can\'t find the email, please contact Amazon\'s support at their <a href=\'https://forums.aws.amazon.com/forum.jspa?forumID=90\' target=\'_blank\'>Amazon SES forum</a>');?>.<br/><br/><?php echo _('For more information on Amazon SES suspension, please see <a href=\'http://docs.aws.amazon.com/ses/latest/DeveloperGuide/e-faq-sp.html\' target=\'_blank\'>http://docs.aws.amazon.com/ses/latest/DeveloperGuide/e-faq-sp.html');?></a>"; $("#test-send-error2-msg").html(suspension_msg); } else $("#test-send-error2-msg").html("<strong>"+data+"</strong>"); } } ); } }); //init var inlists_array = []; var exlists_array = []; var inlists = 0; var exlists = 0; var recip = 0; function disable_btns() { $("#real-btn").addClass("disabled"); $("#real-btn").attr("disabled", "disabled"); $("#schedule-btn").addClass("disabled"); $("#schedule-btn").attr("disabled", "disabled"); $("#pay-btn").addClass("disabled"); $("#pay-btn").attr("disabled", "disabled"); } function enable_btns() { $("#real-btn").removeClass("disabled"); $("#real-btn").removeAttr("disabled"); $("#schedule-btn").removeClass("disabled"); $("#schedule-btn").removeAttr("disabled"); $("#pay-btn").removeClass("disabled"); $("#pay-btn").removeAttr("disabled"); } //select list count $("select#email_list_exclude, select#email_list").change(function () { disable_btns(); $("#recipients").html("<img src='<?php echo get_app_info('path');?>/img/<?php echo get_app_info('dark_mode') ? 'loader-dark.gif' : 'loader-light.gif';?>' style='width: 15px; margin-top: -2px;'/> <?php echo _('Calculating');?>.."); $("#remaining").hide(); var inlists_array = []; var exlists_array = []; var inseg_array = []; var exseg_array = []; var inlist_selected = []; var inlist_selected_type = []; var exlist_selected = []; var exlist_selected_type = []; $("select#email_list_exclude option").each(function(){ $("#excl_"+$(this).val()).removeAttr("disabled"); $("#excl_seg_"+$(this).val()).removeAttr("disabled"); }); $("select#email_list :selected").each(function(i, selected){ inlist_selected[i] = $(selected).val(); inlist_selected_type[i] = $(selected).attr("data-is-seg"); //If selected list is a segment if(inlist_selected_type[i] == "yes") { inseg_array.push(inlist_selected[i]); $("#excl_seg_"+inlist_selected[i]).attr("disabled", true); $("#excl_seg_"+inlist_selected[i]).removeAttr("selected"); } //Else if selected list is a regular list else { inlists_array.push(inlist_selected[i]); $("#excl_"+inlist_selected[i]).attr("disabled", true); $("#excl_"+inlist_selected[i]).removeAttr("selected"); } }); $("select#email_list_exclude :selected").each(function(i, selected){ exlist_selected[i] = $(selected).val(); exlist_selected_type[i] = $(selected).attr("data-is-seg"); //If selected list is a segment if(exlist_selected_type[i] == "yes") { exseg_array.push(exlist_selected[i]); } //Else if selected list is a regular list else { exlists_array.push(exlist_selected[i]); } }); if(inlists_array.length!=0) { inlists = inlists_array.join(","); $("#in_list").val(inlists); } else { inlists = 0; $("#in_list").val(""); } if(inseg_array.length!=0) { inlists_seg = inseg_array.join(","); $("#in_list_seg").val(inlists_seg); } else { inlists_seg = 0; $("#in_list_seg").val(""); } if(exlists_array.length!=0) { exlists = exlists_array.join(","); $("#ex_list").val(exlists); } else { exlists = 0; $("#ex_list").val(""); } if(exseg_array.length!=0) { exlists_seg = exseg_array.join(","); $("#ex_list_seg").val(exlists_seg); } else { exlists_seg = 0; $("#ex_list_seg").val(""); } $.post("./includes/create/calculate-totals.php", { include_lists: inlists, exclude_lists: exlists, include_lists_seg: inlists_seg, exclude_lists_seg: exlists_seg }, function(data) { if(data == 'failed') { alert("Unable to calculate totals."); } else { enable_btns(); $("#recipients").text(data); $("#remaining").show(); recip = data; //if user have AWS keys, check quota if($("#aws_keys_available").val()=='true' || $("#is_sub_user").val()) { //check if user is sending to more than SES allows if(recip > Number($("#ses_sends_left").val()) && Number($("#ses_sends_left").val())!='-1') { $("#over-limit").slideDown("fast"); $("#recipients").css("color", "#FF0000"); $("#recipients").css("font-weight", "bold"); disable_btns(); } else { $("#over-limit").slideUp("fast"); $("#recipients").css("color", "#<?php echo get_app_info('dark_mode') ? 'FFF' : '000'?>"); $("#recipients").css("font-weight", "normal"); enable_btns(); } } $("#grand_total").text( number_format( Number($("#delivery_fee").text()) + (Number($("#recipient_fee").text()) * recip) , 3, '.', ',') ); $("#grand_total_val").val( number_format( Number($("#delivery_fee").text()) + (Number($("#recipient_fee").text()) * recip) , 2, '.', ',') ); } } ); }) .trigger('change'); //number format function function number_format( number, decimals, dec_point, thousands_sep ) { var n = number, c = isNaN(decimals = Math.abs(decimals)) ? 2 : decimals; var d = dec_point == undefined ? "," : dec_point; var t = thousands_sep == undefined ? "." : thousands_sep, s = n < 0 ? "-" : ""; var i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "", j = (j = i.length) > 3 ? j % 3 : 0; return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : ""); } //send later $("#send-later-btn").click(function(){ if($("#schedule-form-wrapper").is(":visible")) { $("#real-btn").slideDown("fast"); $("#pay-btn").slideDown("fast"); $("#schedule-form-wrapper").slideUp("fast"); $("#send-later-btn").text("<?php echo _('Schedule this campaign?');?>"); } else { $("#real-btn").slideUp("fast"); $("#pay-btn").slideUp("fast"); $("#schedule-form-wrapper").slideDown("fast"); $("#send-later-btn").html("← <?php echo _('Back');?>"); } }); $('#datepicker').pikaday({ firstDay: 1 }); $("#date-icon, #datepicker").css("cursor", "pointer"); $("#date-icon").click(function(){ $("#datepicker").click(); }); $("#schedule-form").submit(function(){ $("#email_lists").val(inlists); $("#email_lists_excl").val(exlists); $("#email_lists_segs").val(inlists_seg); $("#email_lists_segs_excl").val(exlists_seg); $("#grand_total_val2").val($('#grand_total_val').val()); $("#total_recipients2").val($("#recipients").text()); }); }); </script>