Results 1 to 2 of 2

Thread: How to change eMail Header

  1. #1
    Join Date
    Sep 2007
    Posts
    4

    Default How to change eMail Header

    If a new link is added by admin and the "notify link owner" flag is on, the link owner receive a mail with emty header (subject), where can I change this?

  2. #2
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    All emails are in the /themes/themename/mail/ folder, but those are just the bodies of the emails.

    What you want is here in admin/link_add.php

    if ($notify_link_owner) {
    // send link owner
    $body = EvalTemplate($theme_path . "/mail/add_ok.mail", $links_obj->email_template_fields);
    $from = $email_address;
    @mail($email, $msg["20130"], $body, "From: $from \nX-Mailer: INDEXU_X-Mailer/1.0");
    }

Similar Threads

  1. Replies: 4
    Last Post: 02-07-2005, 02:56 PM
  2. Replies: 2
    Last Post: 05-12-2004, 10:18 PM
  3. Replies: 9
    Last Post: 09-23-2003, 06:10 PM
  4. Replies: 1
    Last Post: 01-24-2002, 07:25 PM
  5. Change reject email?
    By amanda in forum v5.x
    Replies: 1
    Last Post: 09-24-2001, 03:49 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •