Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $handle = fopen("./tn_list", "r");
- if ($handle)
- {
- echo '<a href="mailto:';
- while (($line = fgets($handle)) !== false)
- {
- echo $line . ";";
- }
- }
- $subject = "TESTING SUBJECT";
- $body = "Testing body";
- echo "?subject=$subject&body=$body";
- echo '">Send</a>';
- fclose($handle);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement