Server : Apache System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/saimikebio.com/mobile/ecshopjcw/templates/ |
<!-- $Id: shop_config_mail_settings.htm 14216 2008-03-10 02:27:21Z testyang $ --> {include file="pageheader.htm"} {insert_scripts files="./js/validator.js"} <form method="POST" action="shop_config.php?act=post" name="theForm"> <div class="main-div"><p style="padding: 0 10px">{$lang.mail_settings_note}</p></div> <div class="main-div"> <table width="100%" id="{$group.code}-table" > {foreach from=$cfg item=var key=key} {include file="shop_config_form.htm"} {/foreach} <tr> <td class="label">{$lang.cfg_name.test_mail_address}:</td> <td> <input type="text" name="test_mail_address" size="30" /> <input type="button" value="{$lang.cfg_name.send}" onclick="sendTestEmail();" class="button" /> </td> </tr> <tr> <td align="center" colspan="2"> <input name="submit" type="submit" value="{$lang.button_submit}" class="button" /> <input name="reset" type="reset" value="{$lang.button_reset}" class="button" /> <input name="type" type="hidden" value="mail_setting" class="button" /> </td> </tr> </table> </div> </form> {literal} <script type="text/javascript" language="JavaScript"> <!-- onload = function() { // 开始检查订单 startCheckOrder(); } /** * 测试邮件的发送 */ function sendTestEmail() { var eles = document.forms['theForm'].elements; var smtp_host = eles['value[501]'].value; var smtp_port = eles['value[502]'].value; var smtp_user = eles['value[503]'].value; var smtp_pass = eles['value[504]'].value; var reply_email = eles['value[505]'].value; var test_mail_address = eles['test_mail_address'].value; var mail_charset = 0; for (i = 0; i < eles['value[506]'].length; i++) { if (eles['value[506]'][i].checked) { mail_charset = eles['value[506]'][i].value; } } var mail_service = 0; for (i = 0; i < eles['value[507]'].length; i++) { if (eles['value[507]'][i].checked) { mail_service = eles['value[507]'][i].value; } } Ajax.call('shop_config.php?is_ajax=1&act=send_test_email', 'email=' + test_mail_address + '&mail_service=' + mail_service + '&smtp_host=' + smtp_host + '&smtp_port=' + smtp_port + '&smtp_user=' + smtp_user + '&smtp_pass=' + encodeURIComponent(smtp_pass) + '&reply_email=' + reply_email + '&mail_charset=' + mail_charset, emailResponse, 'POST', 'JSON'); } /** * 邮件发送的反馈信息 */ function emailResponse(result) { alert(result.message); } //--> </script> {/literal} {include file="pagefooter.htm"}