rsvp_attendees_send_invites($rid, $destination = NULL)
rsvp/rsvp.module, line 807
Callback to send invitations to users already in the invitation list.
<?php
function rsvp_attendees_send_invites($rid, $destination = NULL) {
// send RSVPs
$status = _rsvp_mail_rsvp($rid);
// theme the output
$content = theme('rsvp_send_status', $status);
drupal_set_message($content);
if ($destination != NULL) {
drupal_goto($destination);
}
}
?>