_rsvp_is_invite_message_enabled($rid)
rsvp/rsvp.module, line 1646
$rid The id of the rsvp.
<?php
function _rsvp_is_invite_message_enabled($rid) {
$enabled = db_fetch_object(db_query('SELECT list_email FROM {rsvp} WHERE rid = %d', $rid));
return $enabled->list_email;
}
?>