8000 MailSenderOld · frankframework/frankframework Wiki · GitHub
[go: up one dir, main page]

Skip to content
celmoussaoui edited this page Oct 27, 2019 · 1 revision

Examples

Sample email.xml:

    <email>
       <recipients>
          <recipient type="to">***@hotmail.com</recipient>
          <recipient type="cc">***@gmail.com</recipient>
       </recipients>
       <from>***@yahoo.com</from>
       <subject>This is the subject</subject>
       <threadTopic>subject</threadTopic>
       <message>This is the message</message>
       <messageType>text/plain</messageType><!-- Optional -->
       <messageBase64>false</messageBase64><!-- Optional -->
       <charset>UTF-8</charset><!-- Optional -->
       <attachments>
          <attachment name="filename1.txt">This is the first attachment</attachment>
          <attachment name="filename2.pdf" base64="true">JVBERi0xLjQKCjIgMCBvYmoKPDwvVHlwZS9YT2JqZWN0L1N1YnR5cGUvSW1...vSW5mbyA5IDAgUgo+PgpzdGFydHhyZWYKMzQxNDY2CiUlRU9GCg==</attachment>
          <attachment name="filename3.pdf" url="file:/c:/filename3.pdf"/>
          <attachment name="filename4.pdf" sessionKey="fileContent"/>
       </attachments><!-- Optional -->
   </email>

Notice: the XML message must be valid XML. Therefore, especially the message element must be plain text or be wrapped as CDATA. Example:

    <message><![CDATA[<h1>This is a HtmlMessage</h1>]]></message>

Clone this wiki locally

0