Announcement

Collapse
No announcement yet.

Change Subject of Resend Link Email

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Change Subject of Resend Link Email

    Please help. I would like to remove the word Order and the order number from the Resend Download Link email.

    Current subject:
    Snow's Puzzle Lab : Order AV117910000019 : Download Link

    Need:
    Snow's Puzzle Lab : Download Link

    I have tried this KB solution http://community.sellerdeck.com/showthread.php?t=45495. But it doesn't seem to effect the mails created in SellerDeck.

    I have used Norman's solution http://community.sellerdeck.com/show...3&postcount=23 to replace some of the text but I would still like to make the other changes.
    "Opportunities multiply as they are seized." - Sun Tzu

    #2
    Got It!

    Taking Norman's lead, you can do a substr replace in ACTINIC.pm

    Code:
    substr($sSubjectText, 19, 23) = "";
    $sSubjectText =~ s/Resend Download URL Email/Download Link/i;
    "Opportunities multiply as they are seized." - Sun Tzu

    Comment

    Working...
    X