about image didn't show up in email sending to recipent when do new registration


  • Default avatar
    bebedream    
     8 years ago
    0

    Hello Seyi,

    We have the problem when do testing. We set the rule for new registration for sending the coupon to the new user. when all setup done and try to go test. We found that the recipent recieve the email don't show the image. Is the aworewards use his only email system to send or use the joomla itself? I also install acymailing extension on our system. Is there any setting that I missing?


    Bebedream
  • Your avatar
    seyi    
     8 years ago
    0

    Hello,

    The relative link is not updated. Here is the fix:

    in www/administrator/components/com_aworewards/helpers/estore/estorerewardshandler.php, around line 1395 is this:
    <?php
            $message 
    $email_obj->email_body;
    ?>


    Right after that, add this:
    <?php
            $message 
    aworewards::fixImagePath($message);
            
    $message aworewards::fixRelativeLinks($message);
    ?>


    That should fix the problem with relative links.
  • Default avatar
    bebedream    
     8 years ago
    0

    Seyi,

    Thanks for your help, the problem is solved after correction.

    bebedream
  • Default avatar
    bebedream    
     8 years ago
    0

    This comment has been moved here.