如何从EMM发送HTML电子邮件

时间:2015-10-11 14:46:06

标签: wso2 wso2esb wso2carbon wso2-emm

从emm \ configuration控制台,我们可以邀请用户加入该组织;发送带有URL的电子邮件以注册到EMM服务器。 该电子邮件以纯文本格式发送:Content-Type:text / plain 我们如何以HTML格式发送它:Content-Type:text / html

    Subject: EMM Enrollment
    MIME-Version: 1.0
    Content-Type: multipart/mixed; 
    boundary="----=_Part_0_83553467.1444441352245"        
     ------=_Part_0_83553467.1444441352245

    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit

1 个答案:

答案 0 :(得分:3)

请在生成电子邮件之前按照以下链接配置服务器。例如,我们需要配置axis2.xml以在/repository/conf/axis2/axis2.xml上指定邮件客户端 https://docs.wso2.com/display/EMM201/General+Server+Configurations

文档https://docs.wso2.com/display/EMM201/Sending+Enrollment+Invitations+to+Users,详细说明我们如何向用户发送注册信息。本文档具有可以为此目的调用的REST API调用。

例如,我们可以使用如下的curl命令生成邀请。

curl -X POST -H" Content-Type:application / json" -H"授权:Bearer 33392fb365b3ac693b405b565ddc8a3a" -d @' user.json' -k -v https://localhost:9443/mdm-admin/users/email-invitation

的问候,Shavantha