0. 데이터 입력
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <?php header( "Content-Type:text/html;charset=UTF-8" ); ////////////////////////////////////// // 고정 정보 : 절대 수정하지 마십시오. ////////////////////////////////////// $config ->w_serv_url = 'woorimail.com' ; $config ->w_type = 'api' ; $config ->w_mid = 'auth_woorimail' ; $config ->w_act = 'dispWwapimanagerMailApi' ; $config ->w_domain = 'woorimail.com' ; /////////////// // 고정 정보 끝 /////////////// // Y : 443 or 20080 , N : 80 $config ->w_ssl = 'Y' ; $config ->w_ssl_port = '443' ; $config ->w_authkey = 'thisisyourwoorimailauthkey' ; $config ->w_title = '이메일 제목' ; $config ->w_content = '<div style="color:red;">이메일 내용</div>' ; $config ->w_receiver_nickname = '받는이1,받는이2,받는이3' ; $config ->w_receiver_email = 're1@mydomain.com,re2@mydomain.com,re3@mydomain.com' ; $config ->w_member_regdate = '20130102030405,20140102030405,20150102030405' ; $config ->w_sender_email = 'real-reply@mydomain.com' ; $config ->w_sender_nickname = '회신메일' ; // 전용채널인 경우 전용채널 도메인 입력 $config ->w_wms_domain = 'woorimail.com' ; $config ->w_wms_nick = 'webmaster' ; $config ->w_type = 'test' ; $config ->w_callback = '' ; $w_serv_url = $config ->w_serv_url; if ( $config ->w_ssl == 'N' || ! $config ->w_ssl) { $w_ssl_port = '' ; } elseif ( $config ->w_ssl == 'Y' ) { $w_ssl_port = ':' . $config ->w_ssl_port; } $url = $w_ssl . $w_serv_url . $w_ssl_port . '/index.php' ; ?> |