질문과 답변, 세팅정보 및 오류정보를 최대한 상세히 남겨주시면 보다 빠르고 정확한 답변을 드릴 수 있습니다.
중첩되는 질문이 없는지 확인하신 후 오류발생 페이지의 URL을 기입하여 질문해주세요. 그리고 질문에 대해 해결된 사항은 답변을 달아주시면 다른 회원님에게 좋은 자료가 됩니다.
  • 제   목 메일 발송 관련 문의드립니다.
  • 작성자 등록일 2013-03-24/05:58 조회수 1163
보안강화를 이유로 메일서버에서 보안 연결을(SSL) 사용하게 되면 smtp에 SSL 사용을 설정해야합니다.
\Jsource\inc\smtp_info.asp에 24라인에서 61라인까지의 소스를 아래와 같이 변경하여 사용해보세요.
현재 naver 같은 경우는 메일 발송이 잘 되고 있습니다. daum은 메일서버의 보안설정 때문에 발송이 되지 않은것 같습니다. 확인되는데로 알려드리도록 하겠습니다.

    Const cdoSendUsingMethod = _
    "http://schemas.microsoft.com/cdo/configuration/sendusing"
    Const cdoSendUsingPort = 2
    Const cdoSendUsing = 2
    Const cdoSMTPServer = _
    "http://schemas.microsoft.com/cdo/configuration/smtpserver"
    Const cdoSMTPServerPort = _
    "http://schemas.microsoft.com/cdo/configuration/smtpserverport"
    Const cdoSMTPConnectionTimeout = _
    "http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout"
    Const cdoSMTPAccountName = _
    "http://schemas.microsoft.com/cdo/configuration/smtpaccountname"
    Const cdoSMTPAuthenticate = _
    "http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"
    Const cdoBasic = 1
    Const cdoSendUserName = _
    "http://schemas.microsoft.com/cdo/configuration/sendusername"
    Const cdoSendPassword = _
    "http://schemas.microsoft.com/cdo/configuration/sendpassword"
    Const cdoSmtpUseSsl = _
    "http://schemas.microsoft.com/cdo/configuration/smtpusessl"



    Dim objConfig
    Dim Fields

    Set objConfig = Server.CreateObject("CDO.Configuration")
    Set Fields = objConfig.Fields


    With Fields
    .Item(cdoSendUsingMethod) = cdoSendUsingPort      
    .Item(cdoSMTPAuthenticate) = cdoBasic
    .Item(cdoSMTPServerPort) = SMTPport
    .Item(cdoSMTPServer) = SMTPserver
    .Item(cdoSendUserName) = SMTPuserName
    .Item(cdoSendPassword) = SMTPpassword
    .Item(cdoSmtpUseSsl) = true
    .Update
    End With
SNS google
    1. 회원등급: 마스터
    2. 작성글: 52개
    3. 작성댓글수: 1,288개
    4. 로그인: 4,495회
    5. 접속상태: 로그인
    6. 가입일: 2006-05-20
  • 국내 1호 조은보드 마스터 자격(?)을 보유한 운영자입니다.
    최대한 상세히 정보를 알려 주시면 답변시 많은 도움이 됩니다.
    오늘도 파이팅!!
로그인 하시면 댓글을 남길 수 있습니다.
타인의 명예를 훼손 또는 비방, 개인정보 유출 및 광고성 게시물을 삼가해 주세요.
  • 한승효(2013.03.24/13:32:47) 답변
  • 메일발송이 정상적으로 이루어지고 있습니다.
    정말 감사합니다. 수고하세요...