SMS Sender

This module enables sending SMS from ExpressionEngine frontend pages.

To send SMS, you will need to use third-party SMS gateway service. Currently following are supported: Twilio.

Sending the message

{exp:sms_sender:form}

{exp:sms_sender:form}
<p>Message:
<textarea name="message"></textarea>
</p>
<p>Recipients:
<textarea name="recipients"></textarea>
</p>
<p><input type="submit" value="Send SMS" /></p>
{/exp:sms_sender:form}

Tag parameters:

Form fields:

Log of sent messages

{exp:sms_sender:log member_data="yes" custom_fields="yes"}
{if count==1}
<div class="box2">
<div class="header">
<div class="t">
<h3>MY BOOKMARKS</h3>
</div>
</div>
<ul class="broadcasters">
{/if}
<li>
<a class="img" href="{path=entry/{url_title}}"><img src="{photo_url}" alt="{title}" /></a>
<div class="text">
<a href="{path=entry/{url_title}}">{title}</a>
{if description}<p>{description}</p>{/if}}
</div>
</li>
{if count==total_results}
</ul>
</div>
{/if}
{/exp:bookmarks:entries}

{exp:bookmarks:entries} tag will display all channel entries bookmarked by user.

Tag parameters (all optional):

Single variables:

Additionally, if you have custom_fields="yes" set then all custom entry fields are parsed.

If you have member_data="yes" set then entry author's standard member profile fields are also parsed.

Top of page