1

我正在尝试向我的电子邮件发送一条消息,因为我正在使用发送调解器以及我在 AXIS2 文件中设置所需的配置

如果不是让xpath发送调解器的方法是什么,它是否适用于以下代理

<proxy xmlns="http://ws.apache.org/ns/synapse" name="mailCheck" transports="http" statistics="disable" trace="disable" startOnLoad="true">
   <target>
      <inSequence>
         <property name="Subject" value="Alert Message From WSO2 ESB - Service Down !!!" scope="transport" type="STRING"/>
         <property name="messageType" value="text/html" scope="axis2" type="STRING"/>
         <property name="ContentType" value="text/html" scope="axis2" type="STRING"/>
         <property name="Mail" value="mailto:faisal.shaik@youtility.in" scope="default" type="STRING"/>
         <log level="full">
            <property name="Mail" value="mailto:faisal.shaik@youtility.in"/>
         </log>
         <property name="OUT_ONLY" value="true" scope="default" type="STRING"/>
         <send>
            <endpoint key-expression="get-property('Mail')"/>
         </send>
      </inSequence>
      <outSequence/>
   </target>
   <description></description>
</proxy>

如果需要任何更改,请告诉我

4

3 回答 3

1

如果您想从属性值中获取电子邮件地址,请使用标头中介将“To”的值设置为“mailto:faisal.shaik@youtility.in”。

您可以在发送中介之前添加以下内容

<header name="To" expression="fn:concat('mailto:', get-property('Mail'))"/>
于 2013-07-11T11:05:46.760 回答
1

你可以使用这个:

<property name="To" expression="get-property('uri.var.to')" scope="transport"/>
<send>
    <endpoint>
        <address uri="mailto:"/>
     </endpoint>
</send>
于 2015-10-10T19:41:27.750 回答
0
   <send>
             <address uri="mailto:xxx@yyy"/>
         </send>

也可以使用键表达式..

于 2013-07-03T15:08:19.090 回答