Hi,
I'm trying to add fields to Mail receiver using mail package, i'm getting error massage about end tag.
this is standard mail package:
<?xml version="1.0"; encoding="UTF-8"?>
http://sap.com/xi/XI/Mail/30">
<Subject>Subject</Subject>
<From> ? </From>
<To> ? </To>
<Reply_To />
<Content_Type>text/plain</Content_Type>
<Content>
This is the content.
</Content>
</ns:Mail>
this is what i want:
<?xml version="1.0"; encoding="UTF-8"?>
http://sap.com/xi/XI/Mail/30">
Subject>Subject</Subject>
<From> ? </From>
<To> ? </To>
<Cc>? </Cc>
<BCc> ? </BCc>
<Reply_To />
<Content_Type>text/plain</Content_Type>
<Content>
This is the content.
</Content>
</ns:Mail>
any idea ?