Email to friend on product view page does not work

Magento has the function "Send to a friend" (type of link to a friend). You can see the β€œSend to a Friend” link on the product viewing page.

Whenever I try to send an email to a friend, I get the following error: -

Some emails not sent

I configured the Host from System β†’ Configuration β†’ ADVANCED β†’ System β†’ Mail sending settings .

I also configured SMTP and sendmail_from in the php.ini file .

Any idea why I am getting this error?

+4
source share
1 answer

The problem is resolved.

The problem was in another module that I used. This module was an overriding class of the SendFriend class ( Mage_Sendfriend_Model_Sendfriend ).

My problem will be useful to those who fall into a similar situation.

When the main code works well or when you have not changed any main code .. even then you get a problem in Magento's default functionality.

The reason may be some local or community module redefining the main classes.

+3
source

Source: https://habr.com/ru/post/1343147/


All Articles