ÿØÿà JFIF ` ` ÿþ
Server : Apache System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : tkt_travelbus ( 1137) PHP Version : 7.0.0p1 Disable Function : mysql_pconnect Directory : /tkt_travelbus/www/admin/setting/ |
Upload File : |
<? include "../include/top.html"; include "_common.php"; ?> <div class="contents_wrap"> <div class="contents_wrap_in"> <div class="title">기초코드설정<span class="arrow">></span><strong>LINEWORKS SMTP 메일설정</strong></div> <div class="contents_detail"> <div class="setting_wrap"> <!-- 폼 --> <form name="frm_edit" id="frm_edit" method="post" enctype="multipart/form-data"> <input type="hidden" name="SqlType" value="info_edit" /> <h2 class="mt30">LINEWORKS SMTP 메일설정</h2> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="t_setting" summary="사이트 기본정보를 설정하실 수 있습니다."> <caption>LINEWORKS SMTP 메일설정</caption> <colgroup> <col width="180px" /> <col /> </colgroup> <tbody> <tr> <th scope="row"><label for="shop_company">SMTP 서버명</label></th> <td><input name="smtp_host" id="smtp_host" type="text" value="<?=$TK_CF_SMTP['smtp_host']?>" class="input_text" hname="SMTP 서버명" required /></td> </tr> <tr> <th scope="row"><label for="shop_company">SMTP 포트</label></th> <td><input name="smtp_port" id="smtp_port" type="text" value="<?=$TK_CF_SMTP['smtp_port']?>" class="input_text" hname="SMTP 포트" required /></td> </tr> <tr> <th scope="row"><label for="shop_company">SMTP 연결방법</label></th> <td> <select name="smtp_type" hname="SMTP 연결방법" required> <option value="" <?if($TK_CF_SMTP['smtp_type']=='') echo ' selected'; ?>>선택</option> <option value="tls" <?if($TK_CF_SMTP['smtp_type']=='tls') echo ' selected'; ?>>tls</option> <option value="ssl" <?if($TK_CF_SMTP['smtp_type']=='ssl') echo ' selected'; ?>>ssl</option> </select> </td> </tr> <tr> <th scope="row"><label for="shop_company">아이디</label></th> <td><input name="smtp_id" id="smtp_id" type="text" value="<?=$TK_CF_SMTP['smtp_id']?>" class="input_text" hname="아이디" required /></td> </tr> <tr> <th scope="row"><label for="shop_company">비밀번호</label></th> <td><input name="smtp_pwd" id="smtp_pwd" type="text" value="<?=$TK_CF_SMTP['smtp_pwd']?>" class="input_text" hname="비밀번호" required /></td> </tr> <tr> </tbody> </table> <div class="btn_wrap_C mt30" style="background-color:#edf0f5"> <a href="javascript:;" onClick="check_frm();" class="Bbtn red">수정</a> </div> </form> <!-- /폼 --> </div> </div> </div> </div> <script type="text/javascript"> function check_frm() { var f=document.frm_edit; // 폼체크 var result = to_validation(f); if (result == false) return false; if(!confirm("저장하시겠습니까?")) return false; $("form#frm_edit").attr("action","smtp_mail_setting_proc.php"); $("form#frm_edit").submit(); //ajax_post("ajax_proc","site_setting_proc.php","frm_edit"); } </script> <? include "../include/footer.html" ?>