I finally got this working 1 time yesterday and now I keep getting the
following error.  Would anyone know what would be causing this and some
idea on how to isolate the issue? 

Thanks

C:\Workspaces\AHLTA\3.3.5\BuildMgmt\BuildBox\Scripts>nant
-buildfile:testmail.xml
NAnt 0.85 (Build 0.85.2478.0; release; 10/14/2006)
Copyright (C) 2001-2006 Gerry Shaw
http://nant.sourceforge.net

Buildfile:
file:///C:/Workspaces/AHLTA/3.3.5/BuildMgmt/BuildBox/Scripts/testmail.xm
l
Target framework: Microsoft .NET Framework 2.0
Target(s) specified: sendmail


sendmail:

     [mail] Sending mail to james.d.macdiar...@saic.com.

BUILD FAILED

C:\Workspaces\AHLTA\3.3.5\BuildMgmt\BuildBox\Scripts\testmail.xml(6,6):
Error sending mail:
Error enountered while sending mail message.
Make sure that mailhost=0015-its-exmb14.us.saic.com is valid

    Error loading type library/DLL. (Exception from HRESULT: 0x80029C4A
(TYPE_E_CANTLOADLIBRARY))
        Error loading type library/DLL. (Exception from HRESULT:
0x80029C4A (TYPE_E_CANTLOADLIBRARY))

Total time: 0 seconds.

Here is the script:

MailHost address removed for security reasons.

<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://nant.sf.net/release/0.85/nant.xsd"; name="Build
AHLTA" default="sendmail">

  <target name="sendmail">
    <mail
        from="james.d.macdiar...@saic.com"
        tolist="james.d.macdiar...@saic.com"
        subject="Build Report"
        mailhost="xxx.xxx.xxx.xxx"
        message="Build Successful"
        verbose="true"
    >
    </mail>

  </target>

</project>
------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to