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";

Continua a leggere

Tagged , | Lascia un commento

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 ( 

Continua a leggere

Tagged , , , | Lascia un commento

Leggi tutti i campi in una forma [chiuso]

Questo “formmail.aspASP 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 

Continua a leggere

Tagged , , | Lascia un commento

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 onContinua a leggere

Tagged , , , | Lascia un commento

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

Tagged , , | Lascia un commento

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 theContinua a leggere

Tagged , , , , | Lascia un commento

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 theContinua a leggere

Tagged , , , , | Lascia un commento

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 

Continua a leggere

Tagged , | Lascia un commento

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

Tagged , | Lascia un commento

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);
 

Continua a leggere

Tagged , , , | Lascia un commento
21 pagine