Is there a way to customize the email recipient of where the wishlist is sent to?
Right now when a user wants to send their wishlist, it is automatically populating with info@mydomain.com in the wishlist form. I want to change it to quote@mydomain.com. Is there a proper way to do this?
How to customize wishlist email recipient?
Re: How to customize wishlist email recipient?
Edit Website/ConLib/SendWishlistPage.ascx.cs file and locate following function
if you want to change from address
if you want to change to address then it would be something like
Code: Select all
private void InitSendWishlistForm()
{
User user = Token.Instance.User;
FromAddress.Text = user.Email;
SendTo.Tex
Message.Text = GetMessage();
}
Code: Select all
private void InitSendWishlistForm()
{
User user = Token.Instance.User;
FromAddress.Text = "qoute@mydomain.com";
Message.Text = GetMessage();
}
Code: Select all
private void InitSendWishlistForm()
{
User user = Token.Instance.User;
FromAddress.Text = user.Email;
SendTo.Text = "qoute@mydomain.com";
Message.Text = GetMessage();
}