<%@page contentType="text/html; charset=UTF-8"%> <%@page import="com.csc.library.utilities.CheckNull,com.csc.library.mail.SendMail,com.csc.library.utilities.*"%> <%request.setCharacterEncoding("UTF-8");%> <% CheckNull chk = new CheckNull(); String cmd = chk.chkNullString(request.getParameter("__cmd")); ThaiUtilities th = new ThaiUtilities(); int result; if(cmd.equalsIgnoreCase("send")){ String from = chk.chkNullString(request.getParameter("__mail_from")); String to = chk.chkNullString(request.getParameter("__mail_to")); String cc = chk.chkNullString(request.getParameter("__mail_cc")); String subject = chk.chkNullString(request.getParameter("__mail_subject")); String message = chk.chkNullString(request.getParameter("__mail_message")); SendMail mail = new SendMail( "", from, to, cc, subject, message); result = mail.send(); } %> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link href="../CSS/TISCO.css" rel="stylesheet" type="text/css"> <script type='text/javascript' src='../JS/SCREEN.js'></script> <script type='text/javascript' src='../JS/DATEINPUT.js'></script> <script type='text/javascript' src='../JS/VIEWCALENDAR.js'></script> <script type='text/javascript' src='../JS/ICONSMENU.js'></script> <script language='javascript'>setLang('tha');</script> <script language="javascript">getTitleName();</script> <script language='javascript' src='../JS/HOTKEY.js'></script> <script language="JavaScript" type="text/JavaScript"> function GoSave(){} function GoUpdate(){} function GoDelete(){} function GoSearch(){} function goHelp(helpName,inputName){ var helpReturn; if(inputName=="__mail_from" ) helpReturn="__mail_from:"; linkHelp_Return(helpName,helpReturn); } function sendMail(){ with(document.cscform){ if (__mail_from.value == "" ) { alert("กรุณากรอกเมล์ผู้รับ"); __mail_from.focus(); } else if (__mail_to.value == "" ) { alert("กรุณากรอกเมล์ผู้ส่ง"); __mail_to.focus(); } else if (__mail_message.value == "") { alert("กรุณาใส่เนื้อหาในการส่งเมล์ครั้งนี้"); __mail_message.focus(); } else { __cmd.value = "send"; submit(); } } } function goBack(){ close(); } function sendMailComp() { alert("ส่งเมล์เรียบร้อยแล้ว"); //window.close(); } function template(type){ with(document.cscform){ if(type=="com") text = "เรียนคณะกรรมการสัมภาษณ์\n ทางหน่วยงานการสรรหา ส่วนการบุคคล ขอเรียนเชิญคณะกรรมการเข้าร่วมเป็นกรรมการสัมภาษณ์งาน\nในตำแหน่ง "+position.value+" ในวันที่ "+date.value+" เวลา "+time.value+" ณ "+place.value+" ชื่อผู้สมัคร "+aname.value+"\n \nโดยท่านสามารถดูรายละเอียดเพิ่มเติมที่ระบบ HRIS Module Recruitment / กรรมการสัมภาษณ์ / ตารางการสัมภาษณ์\n\n ขอเชิญคณะกรรมการเข้าร่วมการสัมภาษณ์งาน ณ วัน เวลา และ สถานที่ดังกล่าว หากท่านมีข้อสงสัยประการใด สามารถ\nติดต่อสอบถาม กับทางหน่วยงานการสรรหา ส่วนการบุคคล (02-909-0300 ต่อ 615, 758)\n\nขอแสดงความนับถือ\n\nหน่วยงานการสรรหา ส่วนการบุคคล\n\n บริษัท แมกเนคอมพ์ พรีซิชั่น เทคโนโลยี จำกัด(มหาชน)" else //text="เรียนคุณ "+aname.value+"\n ทางบริษัท แมกเนคอมพ์ พรีซิชั่น เทคโนโลยี จำกัด(มหาชน) มีความยินดีที่จะแจ้งให้ท่านทราบว่าทางบริษัทฯ มีความประสงค์ที่จะขอนัด\nท่านสัมภาษณ์งาน ในตำแหน่ง "+position.value+" ในวันที่ "+date.value+" เวลา "+time.value+" ณ "+place.value+" ห้อง "+room.value+"\n ขอเชิญท่านเข้ารับการสัมภาษณ์งาน ณ วันเวลา และสถานที่ดังกล่าว อนึ่งผู้สมัครจะต้องแต่งการสุภาพในวันที่มาสัมภาษณ์งาน\nและนำเอกสารสมัครงานต่างๆ มาให้ครบถ้วน (สำเนาหลักฐานทางการศึกษา/าสำเนาบัตรประชาชน/สำเนาทะเบียนบ้าน/\nรูปถ่ายสีขนาด 1 นิ้ว 1 รูป และเอกสารประกอบอื่นๆ) \n\nหากท่านมีข้อสงสัยสามารถติดต่อสอบถามได้โดยตรงกับทางบริษัทฯ\n\nขอแสดงความนับถือ\n\nหน่วยงานการสรรหา ส่วนการบุคคล\n\nบริษัท แมกเนคอมพ์ พรีซิชั่น เทคโนโลยี จำกัด(มหาชน)"; text ="เรียนคุณ ............................................................................... \n"; text +="\nขอแสดงความนับถือ \n"; text +="\nส่วนบริหารทรัพยากรบุคคล\n"; text +="\nบริษัท TEST C จำกัด\n"; __mail_message.value=text; } } </script> </head> <body leftmargin="0" topmargin="0"> <div id="toolTipLayer" style="position:absolute; visibility: hidden"></div> <form name="cscform" method="post" action="REC604.jsp"> <!----------BEGIN CSC INITIAL ZONE ------------------------> <%//=screen.InitialVariable()%> <!----------END CSC INITIAL ZONE --------------------------> <!---------------- HIDDEN FIELD ZONE ----------------------> <!-- All Use --> <input type="hidden" name="__screen" value="REC604"> <input type="hidden" name="__cmd" value=""> <input type="hidden" name="__help" value=""> <input type="hidden" name="__goPage" value=""> <input type="hidden" name="__orderBy" value=""> <input type="hidden" name="__helpReturn" value=""> <input type="hidden" name="__helpName" value=""> <input type="hidden" name="__pageCall" value=""> <input type="hidden" name="__fixCon" value=""> <input type="hidden" name="__fixFilter" value=""> <input type="hidden" name="__language" value="<%//=screen.getUProfile().get("lang")%>"> <input type="hidden" name="__companyid" value="<%//=screen.getUProfile().get("companyid")%>"> <input name="aname" type="hidden" value="<%=th.ASCII2Unicode(request.getParameter("aname"))%>"> <input name="position" type="hidden" value="<%=th.ASCII2Unicode(request.getParameter("position"))%>"> <input name="place" type="hidden" value="<%=th.ASCII2Unicode(request.getParameter("place"))%>"> <input name="room" type="hidden" value="<%=th.ASCII2Unicode(request.getParameter("room"))%>"> <input name="date" type="hidden" value="<%=th.ASCII2Unicode(request.getParameter("date"))%>"> <input name="time" type="hidden" value="<%=th.ASCII2Unicode(request.getParameter("time"))%>"> <script language="javascript">getInputFormatDate();</script> <script language="javascript">initToolTips();</script> <br> <table width="814" height="" border="0" align="center" cellpadding="0" cellspacing="0" class="large"> <tr> <td height="20" class="header">REC604,<script language="javascript">swapLang("Send Mail");</script> </td> </tr> <tr> <td class="blankspace"></td> </tr> <td><table align="center" border="0" cellpadding="0" cellspacing="0" class="largest"> <tr> <td><table border="0" cellpadding="0" cellspacing="1" class="inframe"> <tr> <td width="150" nowrap class="columnlabel"><script language="javascript">swapLang("To ");</script> </td> <td width="717"><input name="__mail_to" type="text" size="80" maxlength="80" onkeypress = "chkNotThaiChaOnly()" value="<%=chk.chkNullString(request.getParameter("__mail_to"))%>"></td> </tr> <tr> <td nowrap class="columnlabel"><script language="javascript">swapLang("From");</script> </td> <td><input name="__mail_from" type="text" size="80" maxlength="80" onblur = "chkEmail(this)" onkeypress = "chkNotThaiChaOnly()" value="<%=chk.chkNullString(request.getParameter("__mail_from"))%>"></td> </tr> <tr> <td nowrap class="columnlabel"><script language="javascript">swapLang("Subject");</script> </td> <td><input name="__mail_subject" type="text" size="80" maxlength="80" value="นัดหมายสัมภาษณ์งาน"></td> </tr> <tr> <td valign="top" nowrap class="columnlabel"><script language="javascript">swapLang("Message");</script> </td> <td><textarea name="__mail_message" cols="125" rows="20"></textarea> <script language="javascript">template('<%=chk.chkNullString(request.getParameter("type"))%>');</script></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td class="blankspace"> </td> </tr> <tr> <td class="blankspace"> <div align="center" > <!-- <a href="javascript:sendMail();"><img src="../IMAGES/BUTTON/SEND.gif" border="0"></a> --> <a href="javascript:goBack();"><img src="../IMAGES/BUTTON/BACK.gif" border="0"></a> </div> </td> </tr> <tr> <td class="blankspace"></td> </tr> <td height="28" class="bottom"></td> </tr> </table> <% if (request.getParameter("__cmd") != null && request.getParameter("__cmd").equals("send")) { %> <script language="javascript">sendMailComp()</script> <% } %> </form> </body> </html>