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 3 of 3

Thread: Resend email giftcards

  1. #1
    tjfdownsouth is offline Junior Member
    Join Date
    Dec 2008
    Posts
    12

    Default Resend email giftcards

    Is there a way to tell the system to resend an email giftcard? we have a customer that says they were not sent so i would like to resend them and track that they went out.

    Thanks,
    Tim

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    Nope. The best you can do is manually email them the giftcard serial code from Configurations -> payment -> Gift card management menu.

  3. #3
    C-Clops is offline Member
    Join Date
    Feb 2007
    Posts
    49

    Default Resending Gift Card Emails

    You actually can resend the GiftCard Email. The function below works for me.

    protected void btnResend_Click(object sender, EventArgs e)
    {
    GiftCard card = new GiftCard();
    card.LoadFromDB(GiftCardID);
    card.SendGiftCardEmail();
    }