smtp_setup()


SMTP로 이메일 전송을 위한 TCP 및 UDP 아이디 설정

Description

void smtp_setup(int $udp_id, int $tcp_id [, string $dns_server = ""[, bool $ip6 = false]])

Parameters

Return Value

없음

Example

<?php
include "/lib/sn_dns.php";    // DNS 라이브러리 추가
include "/lib/sn_smtp.php";  // SMTP 라이브러리 추가
// DNS를 위해 0번 UDP, 메일 전송을 위해 1번 TCP 및 DNS 서버주소를 192.168.0.1로 설정
smtp_setup(0, 1, "192.168.0.1");

// DNS와 SMTP를 위해 각각 2번 UDP와 3번 TCP를 설정,
smtp_setup(2, 3);

// IPv6 활성화
smtp_setup(0, 1, "", true);
?>

See also