흐름 가능한 워크플로 엔진을 사용하여 이메일 보내기
To, From, Html/HtmlVar 등의 파일링 작업이 완료되면. Spring 애플리케이션에서 이메일 서버 구성을 구성합니다.
# email config
flowable.mail.server.host=smtp.google.com
flowable.mail.server.port=587
flowable.mail.server.username=arjun
flowable.mail.server.password=arjun
flowable.mail.server.use-tls=true
전자 메일 작업을 수동으로 추가하려는 경우 이 노드를 워크플로 bpmn 파일에 붙여넣습니다.
<serviceTask id="RejectionEmail" name="Rejection Email" flowable:type="mail">
<extensionElements>
<flowable:field name="to">
<flowable:string><![CDATA[[email protected]]]></flowable:string>
</flowable:field>
<flowable:field name="subject">
<flowable:string><![CDATA[Rejection]]></flowable:string>
</flowable:field>
<flowable:field name="html">
<flowable:string><![CDATA[<a href="http://bitsmonkey.in">Rejection reason</a>
<input type="textarea">Dummy Message</input>]]></flowable:string>
</flowable:field>
</extensionElements>
</serviceTask>
코드 온!
Bitsmonkey에 원래 게시됨
Reference
이 문제에 관하여(흐름 가능한 워크플로 엔진을 사용하여 이메일 보내기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/0xarjunshetty/sending-email-using-flowable-workflow-engine-fp1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)