Social module

Social module add social network connection functionality

Chapters

  1. Mail sending

1 Mail sending

This feature allows you to share URL link for any portal page to your friend.

On any page place such link


<a href="javascript:window.open('<?php echo Yii::app()->getModule("social")->createMailsendingUrl()?>')">
    Share link via email
</a>

Link will leads to controller social/mailsending, it displays such form

To configure sender email use configuration parameter:


'social' => array(
    //email used for mailsending
    'mailsendingEmail' => 'gportal.link@gentics.com'
)