Tag Archives: email

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

Continuer la lecture

Tagged , | Laisser un commentaire

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 ( 

Continuer la lecture

Tagged , , , | Laisser un commentaire

Lire tous les champs dans un formulaire [fermée]

Cette “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 

Continuer la lecture

Tagged , , | Laisser un commentaire

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 onContinuer la lecture

Tagged , , , | Laisser un commentaire

Looking for PHP newsletter software [fermée]

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.Continuer la lecture

Tagged , , | Laisser un commentaire

PHP OpenInviter personnaliser email

C'est probablement une question stupide que d'autres semblent avoir résolu le problème, mais je ne peux pas trouver la réponse sur le SO ou sur le Web. Comment pouvez-vous personnaliser les emails au OpenInviter? There is a place in the example file to customize theContinuer la lecture

Tagged , , , , | Laisser un commentaire

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 theContinuer la lecture

Tagged , , , , | Laisser un commentaire

PHP – essayer d'envoyer des courriels à partir du script avec l'attachement, mais ce n'est pas attachingHi

J'ai un fichier que je suis entrain de créer à la volée comme celui-ci:

// 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 

Continuer la lecture

Tagged , | Laisser un commentaire

Puis-je avoir une heure de sommeil tout au long dans un script PHP site web?

J'ai un script PHP qui traite mes abonnements électroniques.
Il fait quelque chose comme:

foreach email to be sent:
    mailer->send-email
    print "Email sent to whoever."

Je vais maintenant rencontrer de limitation de vitesse par mon hébergeur. The mailing library has a built in Continuer la lecture

Tagged , | Laisser un commentaire

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

Continuer la lecture

Tagged , , , | Laisser un commentaire
21 pages