Archivo de la etiqueta: 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";

Sigue leyendo

Etiquetado , | Deja un comentario

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 ( 

Sigue leyendo

Etiquetado , , , | Deja un comentario

Lea todos los campos en un formulario [cerrado]

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

Sigue leyendo

Etiquetado , , | Deja un comentario

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 onSigue leyendo

Etiquetado , , , | Deja un comentario

¿Busca software de boletín de noticias de PHP [cerrado]

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.Sigue leyendo

Etiquetado , , | Deja un comentario

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 theSigue leyendo

Etiquetado , , , , | Deja un comentario

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 theSigue leyendo

Etiquetado , , , , | Deja un comentario

PHP – tratando de enviar correo electrónico desde el guión con el apego, pero no su 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 

Sigue leyendo

Etiquetado , | Deja un comentario

¿Puedo tener un sueño una hora de duración en un script PHP página web?

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 Sigue leyendo

Etiquetado , | Deja un comentario

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

Sigue leyendo

Etiquetado , , , | Deja un comentario
21 páginas