Powerboat Posted May 6, 2012 Posted May 6, 2012 Would anyone else here be interested in a Mail Chip Integration Tool for communicating with your Forum Membership? Kind regards, Stuart
m3rk0rd Posted May 8, 2012 Posted May 8, 2012 Oh, yes, this would be fantastic. Mainly (for me) because IP.Content cannot send daily or weekly notifications, so i have to do it with Mail Chimp. Downside is that those users have to re-enter their email address when they sign up via Mail Chimp.
Powerboat Posted May 8, 2012 Author Posted May 8, 2012 There is a handy little app for sale here on marketplace for $10 that generates a mailing list in CSV from your forum which you can then plug into mailchimp. Kind regards, Stuart
Chel Posted May 9, 2012 Posted May 9, 2012 That's all it does? A CSV of email addresses? $10? Sounds like scam of the century.
Powerboat Posted May 9, 2012 Author Posted May 9, 2012 Hi Chel, I'm guessing that you are falling into the same trap that IPB sometimes fall into. Just because it is very simple for you to do, you assume that it is also simple for everyone else to do. :smile: That may be why you can't understand that someone like me will find that €10 very good value as it solves a problem for me. Now, the real solution would be that IPB incorporate an email export tool (Like V Bulletin have had for years) to enable non techies to easily create an email list of their forum members without having to go to the back end or pay someone to go to the backend or pay $10! At the moment, it is impossible for a non tech forum owner to send any kind of half professional looking mailshot to their forum members using just the tools provided by IPB. Kind regards, Stuart
m3rk0rd Posted May 14, 2012 Posted May 14, 2012 In addition to what Stuart said, it would be nice to be able to export other information too (e.g. the whole member table; or custom databases).
jackflash Posted May 15, 2012 Posted May 15, 2012 That's all it does? A CSV of email addresses? $10? Sounds like scam of the century. Sorry, but you don't know all that it does or don't know the value of what it does. . .$10.00 is a steal.
jackflash Posted May 15, 2012 Posted May 15, 2012 If you set up your IPB to capture info. on registration: zip code, region or country, etc., then you can toggle and export whatever info. you desire with a simple click. For $10.00, it is a fantastic marketing tool.
Powerboat Posted May 15, 2012 Author Posted May 15, 2012 Can't you guys get csvs from phpmyadmin? Hi Shigure, :smile: I'm sure I could if someone showed me how to. Going back to one of my earlier points.... Two years ago I was a complete non "techie" IPB customer. Over the last two years, thanks to the kindness and patience of my fellow IPB site owners here and also the very friendly IPB support staff, I first learnt how to import xml files to install simple hooks followed by some simple html tweaking (building simple links A=HREF etc...) and only in recent months, I finally learnt how to use FTP to the point where I can now install and activate my own apps such as IP Links, Classifieds and more complicated hooks. I haven't a clue how to query an SQL data base or how to use php admin, but one day....! So, simple little €10 hooks can be a life saver and very good value for the likes of me, as they do a job for me which might other wise mean that I have to hire in help. I can assure you that in my professional and academic life outside of here, that I have probably have skills in my own professionsl field that many of the experienced techies here could only dream of but which I myself take for granted in my day to day work. Luckily, I have met many friendly mentors on here who have patiently taught me new skills which greatly adds to the fun of running and building my forums. What I then try to do when I learn new skills is to then use my "Beginner's perspective" to maybe explain them in an even simpler way to other beginners here on the forums. They say that the best way to learn yourself is to try and teach the subject that you are studying. A typical example was that when first struggling to use FTP for the first time, I couldn't understand when trying to upload files, why the real files and folders with content inside were buried like Russian Baushka Dolls within layers of empty files. Eventually, I realised that the empty file cases were a bread crumb trail to guide me as to where the real files were to be placed. You live and learn! Placing this simple tip on the install "Read Me" instructions of all downloads here would probably help more people than you think to follow me on their first FTP adventure ! Hope this helps ! Kind regards, Stuart
Rimi Posted May 15, 2012 Posted May 15, 2012 I was in the same boat as you powerboat (ohoho that was a clever one. I am so punny). I used to think FTP was exactly like the ACP just that it gave you access to more things. However, I enjoy wasting my time and watching my future crumble into pieces right before my eyes so I spent a lot of time clicking and tweaking things in IPB and reading endlessly on IPS. Lots of reading. So I guess you just need to explore and things will click(hahaha more puns) into place. As for csvs I don't know how to do it myself but I bet ten minutes in phpmyadmin would yield the answer. Just dive into it. Blindly. Just kidding that's terrible advice.
Samourai Posted May 16, 2012 Posted May 16, 2012 Hum, I'd say why not... This integration is a good idea, I believe.
Powerboat Posted May 16, 2012 Author Posted May 16, 2012 There may be other options as well such as Constant Contact etc. Another idea that occurred to me that should be very easy for IPB to implement, would be a hook that allows the Forum Admin to send a broadcast private message to the entire or part membership? Kind regards, Stuart
HappySmoking Posted August 8, 2014 Posted August 8, 2014 Did anything ever come out of this? Mailchimp integration definitely seems like a good addon
stoo2000 Posted August 8, 2014 Posted August 8, 2014 Did anything ever come out of this? Mailchimp integration definitely seems like a good addon '?do=embed' frameborder='0' data-embedContent>>
Fidde Posted August 22, 2014 Posted August 22, 2014 I know this is a bit late but this might help someone. The code below should work. Simply put the code inside the code block inside a new page in IP.Content, enter your database details and choose to process it as a PHP-script and don't use the IPB-wrapper! Make sure you only allow admins to access it too! /** * **** INFO **** * Created by: Fredrik Vittfarne * */ /** * **** SETTINGS **** */ $mysqli = new mysqli("localhost", "ipb_user", "ipb_pass", "ipb_db"); //Change to your database. ("Database host", "Username", "Password", "Database name") //Database settings can be found inside the conf_global.php file. $last = strtotime('01-07-2012'); //Get members logged in after a specific date. /** Only edit below here if you know what you are doing. */ echo <<<EOT <!doctype html> <html> <head> <title>E-mail-export</title> <meta charset="utf-8"> </head> <body> <table border="1"> <tr> <th>Email</th> </tr> EOT; if (isset($_GET['ff'])) { $last = strtotime($_GET['ff']); } /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %sn", mysqli_connect_error()); exit(); } $getmembers = "SELECT * FROM `members` WHERE `last_visit` >= $last ORDER BY `last_visit` ASC"; if ($resultmem = $mysqli->query($getmembers)) { /* fetch associative array */ while ($rowmemb = $resultmem->fetch_assoc()) { $query = "SELECT * FROM pfields_content WHERE member_id = '".$rowmemb['member_id']."'"; $result = $mysqli->query($query); $row = $result->fetch_assoc(); echo <<<EOD <tr> <td>{$rowmemb['email']}</td> </tr> EOD; } /* free result set */ $result->free(); } /* close connection */ $mysqli->close(); echo "</table> </body> </html> "; If you don't have IP.Content, simply save the code as a .php file, enter in the database details and put <?php at the top of the file.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.