Guest User

Untitled

a guest
May 10th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.05 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <proxy xmlns="http://ws.apache.org/ns/synapse"
  3.       name="MailProxy"
  4.       transports="https http"
  5.        statistics="disable"
  6.        trace="disable"
  7.       startOnLoad="true">
  8.     <target>
  9.         <inSequence>
  10.             <payloadFactory>
  11.                 <format>
  12.                     <!--<ns:sendMailResponse xmlns:ns="http://services.samples">$1</ns:sendMailResponse&gt;>-->
  13.                     <ns:sendMailResponse xmlns:ns="http://services.samples">$1</ns:sendMailResponse>
  14.                 </format>
  15.                 <args>
  16.                     <arg value="Message Sent from the WSO2 ESB"/>
  17.                 </args>
  18.             </payloadFactory>
  19.             <property name="transport.mail.Format" value="Attachment" scope="axis2"/>
  20.             <property name="AttachmentFile" value="attachment.csv" scope="axis2"/>
  21.             <property name="Subject" value="File Received" scope="transport"/>
  22.             <property name="OUT_ONLY" value="true" scope="default" type="STRING"/>
  23.             <log level="full"/>
  24.             <send>
  25.                 <endpoint>
  26.                     <address uri="mailto:mymail@gmail.com"/>
  27.                 </endpoint>
  28.             </send>
  29.         </inSequence>
  30.     </target>
  31.     <description></description>
  32. </proxy>
Add Comment
Please, Sign In to add comment