Reference
Markdown exportBR-DE-28 Seller email should be shaped like an email address
XRechnung warns when seller email (BT-43) does not contain exactly one @ sign with valid surrounding characters.
Problem Description
XRechnung warns when seller email (BT-43) does not contain exactly one @ sign with valid surrounding characters.
WARNING
XRechnung 3.0
Context and Significance
A syntactically plausible contact email reduces manual clarification loops with public recipients.
Solution
Use a reachable address such as invoice@example.com and remove spaces, trailing dots, or placeholders.
Quick actions
Valid Examples
Use these points as the practical checks for this section.
- BT-43 = invoice@example.com
Invalid Examples
Use these points as the practical checks for this section.
- BT-43 = invoice@
- BT-43 = invoice.example.com
Code Examples
Valid XML
<cac:Contact>
<cbc:Name>Sales Department</cbc:Name>
<cbc:Telephone>+49 30 123456</cbc:Telephone>
<cbc:ElectronicMail>invoice@example.com</cbc:ElectronicMail>
</cac:Contact>Invalid XML
<cac:Contact>
<cbc:Name>Sales Department</cbc:Name>
<cbc:Telephone>+49 30 123456</cbc:Telephone>
<!-- nothing follows the @ sign in BT-43 -->
<cbc:ElectronicMail>invoice@</cbc:ElectronicMail>
</cac:Contact>