Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

Problem

  • I need to modify the standard E-mail text

Solution

  • change the stylesheet for the mail appointment

How to find and activate the e-mail stylesheet is described in the Mail Settings How to configure an e-mail service in  in our FAQ. You can the parameter in the stylesheet which contains the <text> element. You can place your own text here. However, this would apply for the whole JobScheduler installation and in our opinion is not to be recommended.

...

Code Block
 <job title = "Send MailsMail" order = "no" stop_on_error = "yes">
      <params>
        <param name="to" value="<mail_adress>" />
        <param name="from" value="<mail_adress>" />
        <param name="subject" value="this is my mail" />
        <param name="host" value="<smtp_server>" />
        <param name="queue_directory" value="c:\temp\smtp" />
        <param name="body" value="this is my body" />
      </params>
    <script language="java" java_class="sos.scheduler.managed.JobSchedulerManagedMailJob">
    </script>
 </job>

You can enter add your own text here. There are separate for the body. Additional parameters for attachments are available.