NEW Nmail PHP 3 업그레이드 할인
자세히 보기

Nmail ASP 서비스 종료 안내(EOS)

Nmail ASP (nWmail, Nmail Server) 제품은 유상 유지보수를 포함한 모든 서비스가 종료되었습니다.

ncdo 사용시 550 Not Pop3 Before authentication에러

주*홍 2007.05.04 14:46 조회 2168

※ 필수입력정보 ※

▷ 제품버젼 : nmail n3.7
▷ 오류발생 메뉴/주소 : http://dev.jobis.co.kr/mailtest.asp
▷ 에러메세지 : to: ****@**** errormsg: 550 Not Pop3 Before authentication

▷ 질문내용 :
asp에서 Ncdo.dll을 이용 하여 메일 발송을 하면 위와 같은 에러가 발생을 합니다.
한메일 만이아니라 모든메일에서 같은 에러가 발생합니다.
소스는 아래와 같이 테스트 소스에 값만 변경했습니다.

sender_email = "****@****"'"보내는 사람 이메일"
to_email = "****@****"'"받는 사람 이메일"
subject = "Ncdo 테스트 입니다."
contents = "테스트 메일본문 입니다."

Set objMail = Server.CreateObject("CDO.Message")

Set mailing = Server.CreateObject("Ncdo.Ncdonts.1") '컴포넌트
mailing.Smtpserver = "mail.test.co.kr" '보낸는 메일서버 지정 (아이피 지정도 가능)
mailing.From = sender_email '보내는 사람 메일 주소
mailing.To = to_email '받는 사람의 메일 주소
mailing.Cc = cc_email
mailing.Bcc = bcc_email
mailing.Subject = subject '메일 제목
mailing.BodyFormat = 1
mailing.Body = contents '메일 내용
mailing.BodyFormat = 0
mailing.MailFormat = 0
mailing.Importance = 1

if mailing.Send = 1 then
Response.Write "메일발송성공(다음)"
else
Response.Write mailing.Errormsg
end if

Set mailing = Nothing

수고하십시오.

댓글 3
이전 글 550 5.7.1 1 최*용 2007.05.04
다음 글 원치않는 프로그램 종료가 이루어 졌습니다. 원인이 무엇일까요? 1 로* 2007.05.03
Loading...