Tag Archives: e-mail
One of my mail() calls is not working correctly
So I have a form, here is php:
<?php
// Contact subject
$subject ="$subject";
// Details
$message="$detail";
// Mail of sender
$mail_from="$customer_mail";
// From
$header="from: $name <$mail_from>";
// Enter your email address
$to ='blabla@hotmail.com';
$friend1 ="$friend_mail_1";
$friend2 ="$friend_mail_2";
$friend3 ="$friend_mail_3";
…
ob_start /ob_get_clean to Email html php content/results
I’m sure there are other better methods that I’m unaware of- just trying to take the simplest approach. Will post additional code as needed:
Selection php results from previous page:
<div id="stage1sat" class="stageBox">
<h3>STAGE 1</h3>
<table>
<?php
ob_start();
if ( …
Leggi tutti i campi in una forma [chiuso]
Questo “formmail.asp” ASP script receive an:
<form action="formmail.asp" method="POST">
Read ALL Fields in form, build a msg with all fields and send to my email this fields and yours values.
msg = empty
for each field in Request.Form() // read …
Email html content/results from webpage via php/form
I have a form where users select a number of options via a checkbox and it displays as lists on the following page. I am not saving their results to a database. I want to include an email field on… Continua a leggere
Looking for PHP newsletter software [chiuso]
I need a PHP software that logs emails and lets you view them like mailman. All threads, attachments etc. I can set forwarding email to PHP.… Continua a leggere
PHP Openinviter customize email
This is probably a dumb question as others seem to have solved it but I cannot find answer on SO or web. How do you customize emails in Openinviter? There is a place in the example file to customize the… Continua a leggere
email enconding improper result, send from php mailer in zencart 1.3.8
I don’t really know much about encoding other then knowing I’m having a problem with it, I’m using the recover cart sales module in zercant 1.3.8 to send an automatic email to people who abandoned their carts without completing the… Continua a leggere
PHP – cercando di inviare e-mail da script con allegato, ma non la sua attachingHi
I have a file that I am creating on the fly like this:
// Create and save the string on the file system
$str = "Business Plan: nSome more text";
$fp = fopen("alex.txt", 'w+');
fwrite($fp, $str);
// email with the …
Posso avere un'ora di sonno in uno script PHP sito?
I have a PHP script that processes my email subscriptions.
It does something like:
foreach email to be sent:
mailer->send-email
print "Email sent to whoever."
…
I’m now encountering rate-limiting by my web host. The mailing library has a built in Continua a leggere
bluehost email pipe
i am piping my emails to a php script on Bluehost server. The script is as below
#!/usr/bin/php -q
<?php
// read from stdin
$fd = fopen("php://stdin", "r");
//$email = "";
while (!feof($fd))
{
$email .= fread($fd, 1024);
}
fclose($fd);
…





