Workflow email From Address

SUGGESTED

When emailing from workflow in Sage X3 the from address is picked from the user record.

Is there a way we can override this and specify a generic from email address

Parents
  • 0
    SUGGESTED

    Through code it's possible 

    Create a custom specific entry point for AWRKMEL

    Write some code similar to below to set the EXP_EMAIL variable.

    (I even created a field on the workflow screen where the user can specify an email address. If there is a value there then I use that email for the sender if not I don;t do anything and the user;s email is used.)

    $ACTION

    Case ACTION
    When "EMAIL" : Gosub EMAIL
    Endcase
    Return

    $EMAIL

     EXP_MAIL = "[email protected]"

    Return

Reply
  • 0
    SUGGESTED

    Through code it's possible 

    Create a custom specific entry point for AWRKMEL

    Write some code similar to below to set the EXP_EMAIL variable.

    (I even created a field on the workflow screen where the user can specify an email address. If there is a value there then I use that email for the sender if not I don;t do anything and the user;s email is used.)

    $ACTION

    Case ACTION
    When "EMAIL" : Gosub EMAIL
    Endcase
    Return

    $EMAIL

     EXP_MAIL = "[email protected]"

    Return

Children