Results 1 to 8 of 8

Thread: Mass mail sent only to 62 of 207 members

  1. #1
    indoorkitty's Avatar
    Join Date
    Oct 2007
    Posts
    26

    Default Mass mail sent only to 62 of 207 members

    In Dolphin 6.0.2 I sent a mass e-mail and thought it would go to all 207 members but it only went to 62 of them.

    Two questions:

    1) How do I get it to go to all active members!??

    2) How do I find out which 62 got the message so I can manually send it to the rest?

    Thank you.

  2. #2

    Join Date
    Jul 2006
    Posts
    101

    Default

    some people dont want your emails and you cannot force it

  3. #3
    indoorkitty's Avatar
    Join Date
    Oct 2007
    Posts
    26

    Default They don't have that option

    I removed the "opt out of receiving e-mails" checkbox from the join form so that all of them are supposed to get e-mails unless they send us an unsubscribe message.
    Last edited by indoorkitty; 11-21-2007 at 02:28 AM.

  4. #4

    Join Date
    Sep 2007
    Posts
    229

    Default

    ok either you manually go and change them all as admin to notify
    or go into your database and change every `EmailNotify` to `Notify` in "Profiles"
    there may be an sql query to run for that but i have no idea what it is ..so it should be quicker to do it manually
    Running version 6.0.0002 ...researching and testing 6.0.003 in the background

  5. #5
    indoorkitty's Avatar
    Join Date
    Oct 2007
    Posts
    26

    Default Thanks

    Thank you very much! By "manually notify," I assume you mean to check each checkbox and paste the message into the text field at the bottom and click Send Message. I tested it on myself and the html layout suffered a bit, but hey, it works! Thanks again!
    Last edited by indoorkitty; 11-21-2007 at 01:59 PM.

  6. #6
    Administrator Smoge's Avatar
    Join Date
    Mar 2005
    Posts
    6,634
    Blog Entries
    5

    Default

    To see how many users /who are set to NotNotifyMe, you can run this SQL query

    Code:
    SELECT NickName FROM Profiles WHERE `EmailNotify` = 'NotNotifyMe'
    You could run this SQL query to change everyone to NotifyMe

    Code:
    Update Profiles SET `EmailNotify` = 'NotifyMe'
    or

    change in periodic/notifies.php
    Code:
    $res_eml = db_res("SELECT `ID` FROM `Profiles` WHERE `Status` <> 'Unconfirmed' AND `EmailNotify` = 'NotifyMe' $sex_filter_sql $age_filter_sql $country_filter_sql");

    to

    Code:
    $res_eml = db_res("SELECT `ID` FROM `Profiles` WHERE `Status` <> 'Unconfirmed' $sex_filter_sql $age_filter_sql $country_filter_sql");
    but note - there is a sex, age and country filter that could also affect how many emails get sent out.
    ModMySite Administrator

    Problems? Questions? Need modifications or other help with your site?

    Open A Ticket , Send Us An Email Or Give Us A Telephone Call +1 518-632-4152.

  7. #7
    indoorkitty's Avatar
    Join Date
    Oct 2007
    Posts
    26

    Default Thanks

    Thanks Smoge! We'll do it.

    Do you have any idea how they would have been set to "not notify" if I removed the option from the Join Form in the first place?

    I'm thinking it might be because they didn't confirm e-mails in the normal way. A lot of them got stuck in moderation (confirm messages went to spam or whatever) so I just clicked the Activate button in the Admin panel to activate their profiles. Does the fact that they never confirmed an e-mail address affect this? It's the only reason I can think of for the problem.

    Thanks again.

  8. #8
    Administrator Smoge's Avatar
    Join Date
    Mar 2005
    Posts
    6,634
    Blog Entries
    5

    Default

    The "messages to spam / junk box / no place" is becoming a big problem. We are working on this with several ModMySite customers and have a couple of different ways to get around the problem.

    One of them is a mod for Dolphin to use an SMTP server instead of localhost (php mail() function) when sending mails.

    Smoge
    ModMySite Administrator

    Problems? Questions? Need modifications or other help with your site?

    Open A Ticket , Send Us An Email Or Give Us A Telephone Call +1 518-632-4152.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Boonex 7.01 Mass Mail Problem - Please Help
    By mikpad in forum Boonex Dolphin 7
    Replies: 1
    Last Post: 06-09-2010, 03:57 AM
  2. Dolphin 6.1 members being able to mass e-mail.
    By apolloboy in forum Dolphin General Discussion v6.00 and above
    Replies: 3
    Last Post: 01-26-2009, 08:47 PM
  3. Mass Mail not working
    By ginger76 in forum Dolphin General Discussion v6.00 and above
    Replies: 9
    Last Post: 03-26-2008, 07:44 AM
  4. Mass Mail Work Around
    By worshiploud in forum Bugs Dolphin 5.6.4
    Replies: 1
    Last Post: 04-10-2007, 07:53 PM
  5. Mass mail problem
    By Knuty in forum General Troubleshooting
    Replies: 2
    Last Post: 12-12-2006, 12:25 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •