smtp_start()


SMTP로 메일을 보내는 데 필요한 항목들을 설정하고 준비

Description

void smtp_start(string $rcpt_email, string $rcpt_name, string $subject, string $body)

Parameters

Return Value

없음

Example

<?php
include_once "/lib/sn_dns.php";  // DNS 라이브러리 추가
include_once "/lib/sn_smtp.php";   // SMTP 라이브러리 추가
smtp_hostname("from_domain.com");    // 송신자 호스트 이름 설정
smtp_account("from_id@from_domain.com", "from_name");   // 송신자 이메일 및 이름 설정
$subject = "email test from PHPoC";
$message = "Hi PHPoC\r\nThis is PHPoC test email\r\nGood bye\r\n";
smtp_start("to_id@to_domain.com", "to_name", $subject, $message);  // 메일 전송 준비
while(1)
{
  $msg = smtp_loop();   // 서버의 응답메시지 수신
  if($msg === false)
    usleep(1000);
  elseif($msg == "")
    ;
  else
    echo "$msg\r\n";   // 서버의 응답메시지 출력
}
?>

See also