SMTP로 메일을 전송
string smtp_send(string $rcpt_email, string $rcpt_name, string $subject, string $body)
성공 시 서버의 응답메시지, 실패 시 빈 문자열("") 또는 응답을 못 받았을 때 false
<?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";
$msg = smtp_send("to_id@to_domain.com", "to_name", $subject, $message); // 메일 전송
if($msg == "221")
echo "send mail successful\r\n";
else
echo "send mail failed\r\n";
?>