With Connect.It incomming mail, the format must be in XML.
The mail should be formatted something like this:
Code:
<Incident>
<ContactName>tommy</ContactName>
<Description>Description|New line... ;o)</Description>
<AffectedItem>asset id</AffectedItem>
<Type>software</Type>
<MdBriefDescription>Brief description</MdBriefDescription>
</Incident>
To this You need a DTD to tell connect.it how to read the xml format it could look something like this (example does not correcpond exactly to above mail example):
Code:
<!ELEMENT Incident (ContactName?,Description?,AffectedItem?,Type?,MdCompany?,MdFunction?,MdSubFunction?,MdHelpdesk?,MdCompanyBill?,MdHdteam?,MdBriefDescription?)>
<!ELEMENT ContactName (#PCDATA)>
<!ELEMENT Description (#PCDATA)>
<!ELEMENT AffectedItem (#PCDATA)>
<!ELEMENT Type (#PCDATA)>
<!ELEMENT MdCompany (#PCDATA)>
<!ELEMENT MdFunction (#PCDATA)>
<!ELEMENT MdSubFunction (#PCDATA)>
<!ELEMENT MdHelpdesk (#PCDATA)>
<!ELEMENT MdHdteam (#PCDATA)>
<!ELEMENT MdCompanyBill (#PCDATA)>
<!ELEMENT MdBriefDescription (#PCDATA)>
The best thing for you to do is to get a test license from Peregrine and start playing with it, it is relatively easy.
Bookmarks