Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #42683
    Anonymous
    Inactive

    Hello!

    New to this plugin and hugely impressed with it and relieved that it exists – i think it might be about to solve many of my headaches 🙂

    One question – is there a way to send an email to all attendees of a given event? Perhaps to let them know some particular late-breaking detail?

    All best!

    #47411
    Franky
    Keymaster

    For the moment not possible, no. You need to export the attendee list to CSV and start your mailing from there.

    #47412
    Anonymous
    Inactive

    ack…

    that’s a shame.. is the feature on the development path at all?

    it really would be a killer addition 🙂

    I’m looking to use this to manage volunteers across a big festival, so the ability to communicate with them in per-event groups would be amazing. Is there a way to default add registrants to a group / mailchimp list ? The CSV export is great, but as the list would be changing quite often it might be impractical for us to use it.

    Many thanks for your feedback and for the plugin though… It’s awesome!

    -iain

    #47413
    Anonymous
    Inactive

    yes

    I would be really interested in this feature.

    Even just a textarea where one could write a message and then click “send to all attendees of this event”

    #47414
    Anonymous
    Inactive

    Can we do this:

    – add a textarea with tinymce editor to write the message and a “send” button

    – then a php post message script like this one:

    <?php

    mysql_connect($sqlserver,$sqllogin,$sqlpwd);

    mysql_select_db("...");

    if(isset($_POST))

    {

    //table of people for this event

    $liste_emails = mysql_query("SELECT email FROM people");

    while ($donnees = mysql_fetch_assoc($liste_emails))

    {

    $fichier_message = '

    <html>

    <body bgcolor="Silver">

    ';

    $fichier_message .= stripslashes($_POST);

    $fichier_message .= '

    ';

    $fichier_message .= ' (le '.date("D, d M Y H:i:s",$donnee["timestamp"]).')';

    $fichier_message .='
    ';

    $fichier_message .= stripslashes($donnee["content"]);

    $fichier_message .='';

    $fichier_message .= '';

    $fichier_message .= '

    ';

    $fichier_message .= '

      ';

      $fichier_message .= '

    $destinataire = $donnees;

    $date = date("d/m/Y");

    $objet = "Information on the event scheduled on $date";

    $headers = "MIME-Version: 1.0" . "rn";

    $headers .= "Content-type:text/html;charset=iso-8859-1" . "rn";

    $headers .= 'From: <myemailaddresse@mysite.com>' . "rn";

    if ( mail($destinataire, $objet, $fichier_message, $headers) )

    {

    $display = 'Successfully sent to ' . $destinataire . '
    ' ;

    echo $display;

    }

    else

    {

    $display = 'Error when sending to ' . $destinataire . '
    ' ;

    echo $display;

    }

    } //end while

    }

    ?>

    <form method="post" action="script.php">

    <!--<textarea cols="100" rows="10" name="message"></textarea>-->

    <textarea id="elm1" name="message" cols="80" rows="20">

    <?php echo 'Hi,
    '; ?>

    </textarea>

    <input type="submit" value="Send message" />

    </form>

    #47415
    Franky
    Keymaster

    That would result in a mail to all people …

    #47416
    Anonymous
    Inactive

    yes you’re right!

    the sql request:

    $liste_emails = mysql_query("SELECT email FROM people");

    should be specified to people concerned by the user-chosen event.

    Is is possible?

    #47417
    Anonymous
    Inactive

    This would be a great feature to have in order to update guests and even remind them of the event. An option so have automatic reminder e-mails sent X hours before an event would also be nice to have.

    #47418
    Franky
    Keymaster

    Use the eme function eme_get_bookings_for to get just the emails for the event:

    $bookings = eme_get_bookings_for($event_id);
    foreach ($bookings as $booking) {
    $email = $booking['person_email'];
    }

    For the rest: email list is a feature request.

    #47419
    Anonymous
    Inactive

    Is the plugin open source?

    #47420
    Franky
    Keymaster

    yup

    #47421
    Anonymous
    Inactive

    On a similar note, we would like to send automatic reminders to our email distribution list. Is there a way that this can be accomplished automatically for all events? Thanks!

    #47422
    Anonymous
    Inactive

    Has anyone solved this feature request. emailing announcements of events to all users, automatic announcements/reminders via email , and on demand announcements/reminders via email are exactly what I’m looking to do.

    Thanks,

    JP

    Does anyone know if the code above works? Where does this code go? functions.php? How do I display this email form?

    #47423
    Franky
    Keymaster

    No sorry, hasn’t been implemented. The mentioned code is to be used on a seperate php file, it’s a standalone thingie.

    But now that I come to think of it, it shouldn’t be too difficult to add something like this to the backend.

    #47424
    Anonymous
    Inactive

    Php is not a strong point of mine. Can I buy you a beer? 🙂

    #47425
    Franky
    Keymaster

    Well, I’m going to release the next version first, way overdue as usual. And then I can start on these …

    #47426
    Anonymous
    Inactive

    One possibility to consider on this is integration with MailPress, which seems to be the best open source mailing list plugin for WordPress. I’ve been using it for a while; it’s quirky but very powerful.

    It maintains an overall list of MailPress “users” (which can be optionally integrated with the WordPress user database) each of whom can be assigned to multiple mailing lists.

    Perhaps EME could be one of those mailing lists, or even create a new mailing list specific to each event.

    Just a thought. 🙂

    #47427
    Anonymous
    Inactive

    Hello,

    is there any update on this feature request ? Is it going to be in one of the next releases ? As I quite need such a feature i would donate some amount for it.

    #47428
    Franky
    Keymaster

    Well, mailpress is gone, replaced by Wikimail, working outside of wordpress. So that’s no longer an option. What is relatively easy to do is just a textbox, decide the event, and click “send” …

    I have it in the back of my head 🙂

    #47429
    Anonymous
    Inactive

    What, what?? MailPress is gone? We use it every day!

    I knew their web site had been flaky for a while, but… huh, they’re plugging that commercial service (who have contributed to them) but it does NOT say they’ve stopped developing MailPress itself. In fact there are support posts from “admin” at least as recently as 2/20/2013. The last release was in December.

    I think the reports of its death are, for now, “exaggerated”. 🙂

    They were just plugging a contributor.

    #47430
    Franky
    Keymaster

    I read something like that on their blog, but now even that redirects to a fishy Russian address, so I’m not putting my money there.

    #47431
    Anonymous
    Inactive

    Yeah, I hear ya. I asked at http://wordpress.org/support/topic/mailpress-still-hijacked-development and he says he’s still working on fighting the “nasty hackers”.

    The web site’s been weird for months, so I don’t know what to think either. 🙁

    It’s hard to believe an open source author would just flip that far to the dark side, so I’m just thinking they’re slow on cleanup.

    #47432
    Franky
    Keymaster

    This will be in the next version. See this changelog:

    http://plugins.trac.wordpress.org/changeset/686595

    With the warning on that page as well:

    Warning: using this functionality to send mails to attendees can result in a php timeout, so not everybody will receive the mail then. This depends on the number of attendees, the load on the server, … . If this happens, use the CSV export link to get the list of all attendees and use mass mailing tools (like OpenOffice) for your mailing.

Viewing 23 posts - 1 through 23 (of 23 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top