[ 1949329 ] Workflow sendMail doesn't handle html flag in mail template
This commit is contained in:
parent
536349d69f
commit
620114592c
|
@ -663,8 +663,7 @@ public class MClient extends X_AD_Client
|
||||||
public boolean sendEMail (MUser from, MUser to,
|
public boolean sendEMail (MUser from, MUser to,
|
||||||
String subject, String message, File attachment, boolean isHtml)
|
String subject, String message, File attachment, boolean isHtml)
|
||||||
{
|
{
|
||||||
EMail email = createEMail(from, to, subject, message, isHtml);
|
EMail email = createEMail(from, to, subject, message, isHtml);
|
||||||
|
|
||||||
if (email == null)
|
if (email == null)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -690,7 +689,7 @@ public class MClient extends X_AD_Client
|
||||||
* @param email email
|
* @param email email
|
||||||
* @return true if sent
|
* @return true if sent
|
||||||
*/
|
*/
|
||||||
private boolean sendEmailNow(MUser from, MUser to, EMail email)
|
public boolean sendEmailNow(MUser from, MUser to, EMail email)
|
||||||
{
|
{
|
||||||
String msg = email.send();
|
String msg = email.send();
|
||||||
//
|
//
|
||||||
|
@ -867,7 +866,7 @@ public class MClient extends X_AD_Client
|
||||||
}
|
}
|
||||||
// No From - send from Request
|
// No From - send from Request
|
||||||
if (from == null)
|
if (from == null)
|
||||||
return createEMail (to, subject, message);
|
return createEMail (to, subject, message, html);
|
||||||
// No From details - Error
|
// No From details - Error
|
||||||
if (from.getEMail() == null
|
if (from.getEMail() == null
|
||||||
|| from.getEMailUser() == null
|
|| from.getEMailUser() == null
|
||||||
|
|
Loading…
Reference in New Issue