Attention Line Not Populating

I'm trying to get the attention line to show up in the coversheet, but when I pass data in to the CoversheetAttn field in the soap xml, it doesn't populate on the coversheet:

<?xml version="1.0" encoding="utf-8"?>

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

    <soap:Header>

        <Request xmlns="http://ws.easylink.com/RequestResponse/2011/01">

            <ReceiverKey>https://messaging.easylink.com/soap/sync</ReceiverKey>

            <Authentication>

                <XDDSAuth>

                    <RequesterID><!-- Removed --></RequesterID>

                    <Password><!-- Removed --></Password>

                </XDDSAuth>

            </Authentication>

        </Request>

    </soap:Header>

    <soap:Body>

        <JobSubmitRequest xmlns="http://ws.easylink.com/JobSubmit/2011/01">

            <DocumentSet>

                <Document ref="doc1">

                    <DocType>PDF</DocType>

                    <Filename>898916721</Filename>

                    <DocData format="base64"><!-- Removed --></DocData>

                </Document>

            </DocumentSet>

            <Message>

                <MessageId>e61e9200-9041-48fe-a6f3-05f6ae078795</MessageId>

                <JobOptions>

                    <BillingCode><!-- Removed --></BillingCode>

                    <CustomerReference>CREF</CustomerReference>

                    <FaxOptions>

                        <FaxCoversheet>

                            <UseCoversheet>yes</UseCoversheet>

                            <CoversheetName>#humana</CoversheetName>

                            <CoversheetTo>To Test</CoversheetTo>

                            <CoversheetFrom>From Test</CoversheetFrom>

                            <CoversheetAttn>Attn Test</CoversheetAttn>

                        </FaxCoversheet>

                        <Pilotline>

                            <PilotlineText>Humana Inc.</PilotlineText>

                        </Pilotline>

                        <FaxMode>standard</FaxMode>

                        <Letterhead>None</Letterhead>

                    </FaxOptions>

                </JobOptions>

                <Destinations>

                    <Fax>

                        <Phone><!-- Removed --></Phone>

                    </Fax>

                </Destinations>

                <Contents>

                    <Part>

                        <DocRef>doc1</DocRef>

                        <Treatment>body</Treatment>

                    </Part>

                </Contents>

            </Message>

        </JobSubmitRequest>

    </soap:Body>

</soap:Envelope>


Answers