Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: transactional emails subject line

  1. #1
    supert is offline Junior Member
    Join Date
    Oct 2009
    Posts
    16

    Default transactional emails subject line

    Hi, ASPDNSF is currently sending out our order confirmation emails and I'm trying to change the subject line for the email but I can't find out where that is located.

    I checked the string resource mgr but its not there.

    Any idea where this might be located? Thanks.

  2. #2
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    Most email subjects are part code & part string resource, so depending on what you're wanting to change them to it might require source.

    For example for the receipt email, in AppLogic.SendOrderEmail:

    Code:
    if (UseLiveTransactions)
                {
                    SubjectReceipt = String.Format(GetString("common.cs.1", ord.SkinID, ord.LocaleSetting), StoreName);
                }
    So it's the contents of the common.cs.1 string resource (which you can easily change) and the StoreName AppConfig.