$receive_number, 'send' => $send_number, 'cont' => $sms_contents); } } if ($od_sms_baesong_check && $default['de_sms_use5']) { if ($od_delivery_company && $od_invoice) { $sms_contents = $default['de_sms_cont5']; $sms_contents = str_replace("{이름}", $od_name, $sms_contents); $sms_contents = str_replace("{택배회사}", $od_delivery_company, $sms_contents); $sms_contents = str_replace("{운송장번호}", $od_invoice, $sms_contents); $sms_contents = str_replace("{주문번호}", $od_id, $sms_contents); $sms_contents = str_replace("{회사명}", $default['de_admin_company_name'], $sms_contents); if($receive_number) $sms_messages[] = array('recv' => $receive_number, 'send' => $send_number, 'cont' => $sms_contents); } } $sms_count = count($sms_messages); if($sms_count > 0) { if($config['cf_sms_type'] == 'LMS') { include_once(G5_LIB_PATH.'/icode.lms.lib.php'); $port_setting = get_icode_port_type($config['cf_icode_id'], $config['cf_icode_pw']); // SMS 모듈 클래스 생성 if($port_setting !== false) { $SMS = new LMS; $SMS->SMS_con($config['cf_icode_server_ip'], $config['cf_icode_id'], $config['cf_icode_pw'], $port_setting); for($s=0; $s<$sms_count; $s++) { $strDest = array(); $strDest[] = $sms_messages[$s]['recv']; $strCallBack = $sms_messages[$s]['send']; $strCaller = iconv_euckr(trim($default['de_admin_company_name'])); $strSubject = ''; $strURL = ''; $strData = iconv_euckr($sms_messages[$s]['cont']); $strDate = ''; $nCount = count($strDest); $res = $SMS->Add($strDest, $strCallBack, $strCaller, $strSubject, $strURL, $strData, $strDate, $nCount); $SMS->Send(); $SMS->Init(); // 보관하고 있던 결과값을 지웁니다. } } } else { include_once(G5_LIB_PATH.'/icode.sms.lib.php'); $SMS = new SMS; // SMS 연결 $SMS->SMS_con($config['cf_icode_server_ip'], $config['cf_icode_id'], $config['cf_icode_pw'], $config['cf_icode_server_port']); for($s=0; $s<$sms_count; $s++) { $recv_number = $sms_messages[$s]['recv']; $send_number = $sms_messages[$s]['send']; $sms_content = iconv_euckr($sms_messages[$s]['cont']); $SMS->Add($recv_number, $send_number, $config['cf_icode_id'], $sms_content, ""); } $SMS->Send(); $SMS->Init(); // 보관하고 있던 결과값을 지웁니다. } } } /* 리빌더 20241016 추가 { */ if($od['mb_id']) { if ($od_sms_ipgum_check) { $od_al = "입금확인 안내 입금금액 : ".number_format($od_receipt_price)."원 주문번호 : ".$od_id; //입금발송 memo_auto_send($od_al, '', $od['mb_id'], "system-msg"); } if ($od_sms_baesong_check) { $od_al = "주문 상품 배송처리 안내 배송사 : ".$od_delivery_company." 운송장번호 : ".$od_invoice." 주문번호 : ".$od_id; //배송발송 memo_auto_send($od_al, '', $od['mb_id'], "system-msg"); } } /* } */