Jump to content

Sent to a friend fails for signed up customers, but it works for guests


Recommended Posts

  • 3 months later...
  • 4 weeks later...

I had the same problem and found the following solution posted in the forum.  I made this changed and it works!!

 

Guys I had the same problem and none of the above worked for me, and I tried the following and it worked:

In /tools/swift/Swift/Message.php line #79
Change

$this->setFrom("");

To

$this->setFrom("[email protected]");
 
In /tools/swift/Swift.php after line 370
if (!($has_reply_to = $message->getReplyTo())) $message->setReplyTo($from);

Add the following code:

if (!$has_reply_to[0])
$message->setReplyTo($from->getAddress());
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...