How To Use Mailto To Send Email To All Selected Rows In A Tbgridview?

Hi guys a have an TbGridView with the name of clients and his emails addresses, i want to send email to all selected clients in a TbGridView when i click to the button "Enviar". Can anyone help me please!!

<?php $this->widget(‘bootstrap.widgets.TbButton’, array(

‘buttonType’=>‘link’,

‘label’=>‘Enviar’,

'type'=&gt;'primary', 


'icon'=&gt;'icon-envelope icon-white',


 'url'=&gt;'',

)); ?>

<?php $this->widget(‘bootstrap.widgets.TbGridView’,array(

'id'=&gt;'entidades-grid',


'dataProvider'=&gt;&#036;model-&gt;search1(),


'filter'=&gt;&#036;model,


'selectableRows'=&gt;2,


'columns'=&gt;array(


 array(


 'id' =&gt; 'selectedIds',


    'class' =&gt; 'CCheckBoxColumn'


),


array(   	'name' =&gt; 'nome',


		'type'=&gt;'raw',


		'value' =&gt; 'CHtml::link(UHtml::markSearch(&#036;data,&quot;nome&quot;),array(&quot;view&quot;,&quot;id&quot;=&gt;&#036;data-&gt;id))',


		'filter'=&gt;false,


	),


		array(


		'header'=&gt;'Email',


	 	 'type' =&gt; 'raw',


		'value' =&gt; 'CHtml::link(CHtml::encode(&#036;data-&gt;getEmails()), &quot;mailto:&quot;.CHtml::encode(&#036;data-&gt;getEmails()))',





	),


	


	array('name'=&gt;'sectores_id', 'value'=&gt;'&#036;data-&gt;sectores-&gt;desc','filter'=&gt;false,),


	array(


		'name'=&gt;'consultor',


		'value'=&gt;'User::itemAlias(&quot;AdminStatus&quot;,&#036;data-&gt;consultor)',


		'filter' =&gt; User::itemAlias(&quot;AdminStatus&quot;),


	),


	


	array(


		'class'=&gt;'bootstrap.widgets.TbButtonColumn',


		





	),


),

)); ?>