| 48 | | } else |
|---|
| 49 | | fatal( "We found " . $ls . " links and " . $ts . " tags, which is more than we allow to be imported. Please email the administrators for help importing your sizeable links collection.<p />-- The Management" ); |
|---|
| | 48 | } else { |
|---|
| | 49 | fatal( "Wow! You have a very nice collection of links. Because you have approximately " . $ls . " links and " . $ts . " tags, which is more than the average user, your import has bene 'flagged for review' by our team to make sure everything is imported correctly. A notice has been sent to the team and they will be in contact with you shortly to finish the import process. <p />Thanks very much,<p /> -- <a href='http://jm3.net/'><b>John Manoogian III</b></a><br /> <a href='http://codeswami.com'>Code Swami</a>: Feed Me Links" ); |
|---|
| | 50 | |
|---|
| | 51 | # FIXME: missing mail call here. |
|---|
| | 52 | $headers = ""; |
|---|
| | 53 | |
|---|
| | 54 | $message = "user $u is trying to import $ls links and $ts tags, please help them."; |
|---|
| | 55 | $message = str_replace ( "\'", "'", $message); |
|---|
| | 56 | $headers .= "From: FML Link Import Request <" . getEmailAddressForUser( $u ) . ">\n"; |
|---|
| | 57 | $message .= "\n\n --\n\n$u: http://feedmelinks.com/u/$u"; |
|---|
| | 58 | $headers .= "X-Mailer: feedmelinks-mailer-daemon\n"; |
|---|
| | 59 | |
|---|
| | 60 | $success = mail( get_maintainer_email(), "$u would like to import $ls links & $ts tags", $message, $headers); |
|---|
| | 61 | if( $success ) |
|---|
| | 62 | log_mesg_to( "sent overlarge import mail from $from to " . get_maintainer_email(), "mail" ); |
|---|
| | 63 | } |
|---|