diff --git a/html/ops/survey_get_addrs.php b/html/ops/survey_get_addrs.php
new file mode 100755
index 0000000000..abb940dd20
--- /dev/null
+++ b/html/ops/survey_get_addrs.php
@@ -0,0 +1,14 @@
+#! /usr/bin/env php
+");
+$db_host = parse_config($config, "");
+$query = "select email_addr from user where expavg_credit>10 and send_email<>0";
+
+system("mysql -h $db_host $db_name -e \"$query\" > survey_tmp");
+system("tail -n +2 survey_tmp > survey_tmp2");
+system("sort -R survey_tmp2 > survey_sort");
+?>