Manuali.it
Ciao e Benvenuto/a nel Forum di Manuali.it !
Non sei registrato? Registrati subito cliccando QUI! E utilizza tutte le funzionalita' del sito!
Ci vediamo sul Forum !
Lo Staff di Manuali.it
Oggi è dom feb 12, 2012 12:46 am

Tutti gli orari sono UTC +2 ore




Apri un nuovo argomento Rispondi all’argomento  [ 6 messaggi ] 
Autore Messaggio
 Oggetto del messaggio: PHP - email formato html
MessaggioInviato: mar mar 16, 2010 4:36 pm 
Non connesso
Novizio
Novizio

Iscritto il: dom apr 12, 2009 9:13 am
Messaggi: 6
Località: Milano
Salve a tutti,
ho il seguente problema:
come faccio a inviare una pagina web che ho sul sito via email (non come allegato), in modo tale che quando uno riceve l'email vede già la pagina web.

Grazie

:smoke:



Condividi: Aggiungi: PHP - email formato html a Technorati Aggiungi: PHP - email formato html a OKNOtizie Aggiungi: PHP - email formato html a Segnalo Aggiungi: PHP - email formato html a Digg Aggiungi: PHP - email formato html a Boomark.it Aggiungi: PHP - email formato html a Furl Aggiungi: PHP - email formato html a de.li.cious Aggiungi: PHP - email formato html a Yahoo Aggiungi: PHP - email formato html a Stumbleupon Aggiungi: PHP - email formato html a Google Aggiungi: PHP - email formato html a BlogLines Aggiungi: PHP - email formato html a SocialDust.com Aggiungi: PHP - email formato html a Live.com Aggiungi: PHP - email formato html a Wikip.it
Top
 Profilo  
 
 Oggetto del messaggio: Re: PHP - email formato html
MessaggioInviato: mer mar 17, 2010 9:54 am 
Non connesso
Moderatore
Moderatore
Avatar utente

Iscritto il: lun mag 01, 2006 6:22 pm
Messaggi: 2062
ciao ,

con quale programma? per esempio in Outlook 2007 é semplicissimo, basta cliccare sul menù View /Barre degli strumenti / web.
Nella la barra di ricerca che apparirà sulla destra, puoi accedere al sito desiderato scrivendo il suo URL.
Una volta che il caricamento della pagina è finito, clicca su Azioni / Inviare pagina web via e-mail e il messaggio si apre con la pagina internet nel contenuto del messaggio.

_________________
My Computer .:. Rampage II Extreme - Core i7 940 - 3x2Go DDR3 1600MHz - ATI HD 4890 - Corsair HX 850W

sito web



Condividi: Aggiungi: PHP - email formato html a Technorati Aggiungi: PHP - email formato html a OKNOtizie Aggiungi: PHP - email formato html a Segnalo Aggiungi: PHP - email formato html a Digg Aggiungi: PHP - email formato html a Boomark.it Aggiungi: PHP - email formato html a Furl Aggiungi: PHP - email formato html a de.li.cious Aggiungi: PHP - email formato html a Yahoo Aggiungi: PHP - email formato html a Stumbleupon Aggiungi: PHP - email formato html a Google Aggiungi: PHP - email formato html a BlogLines Aggiungi: PHP - email formato html a SocialDust.com Aggiungi: PHP - email formato html a Live.com Aggiungi: PHP - email formato html a Wikip.it
Top
 Profilo  
 
 Oggetto del messaggio: Re: PHP - email formato html
MessaggioInviato: mer mar 17, 2010 12:26 pm 
Non connesso
Novizio
Novizio

Iscritto il: dom apr 12, 2009 9:13 am
Messaggi: 6
Località: Milano
Ciao Steven75,
la mail parte dal web. Ti spiego devo inviare una newsletters a x contatti selezionando
il file html da inviare (non in allegato) già presente sul sito. Ho provato in divense maniere ma ricevo una email vuota. Di seguito ti riporto il codice che uso:

---
<?php


$page= file_get_contents("http://www.miosito.com/news01.html");
$header = "From: Inviante <inviante@email.com>\n";
$header .= "X-Mailer: Il nostro Php\n";
$header .= "MIME-Version: 1.0\n";
$header .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
$header .= "Content-Transfer-Encoding: 7bit\n\n";

$messaggio = "<html><body><p>$page</p></body></html>";

$subject = "Prova messaggio";
if( @mail("ricevente@email.com", $subject, $messaggio, $header) ) echo "e-mail inviata con successo!";
else echo "errore nell'invio dell'e-mail!";

?>
---
Hai qualche idea??



Condividi: Aggiungi: PHP - email formato html a Technorati Aggiungi: PHP - email formato html a OKNOtizie Aggiungi: PHP - email formato html a Segnalo Aggiungi: PHP - email formato html a Digg Aggiungi: PHP - email formato html a Boomark.it Aggiungi: PHP - email formato html a Furl Aggiungi: PHP - email formato html a de.li.cious Aggiungi: PHP - email formato html a Yahoo Aggiungi: PHP - email formato html a Stumbleupon Aggiungi: PHP - email formato html a Google Aggiungi: PHP - email formato html a BlogLines Aggiungi: PHP - email formato html a SocialDust.com Aggiungi: PHP - email formato html a Live.com Aggiungi: PHP - email formato html a Wikip.it
Top
 Profilo  
 
 Oggetto del messaggio: Re: PHP - email formato html
MessaggioInviato: gio mar 18, 2010 11:51 am 
Non connesso
Moderatore
Moderatore
Avatar utente

Iscritto il: lun mag 01, 2006 6:22 pm
Messaggi: 2062
ciao,

ti hanno risposto qui

hai eseguito i loro consigli?

_________________
My Computer .:. Rampage II Extreme - Core i7 940 - 3x2Go DDR3 1600MHz - ATI HD 4890 - Corsair HX 850W

sito web



Condividi: Aggiungi: PHP - email formato html a Technorati Aggiungi: PHP - email formato html a OKNOtizie Aggiungi: PHP - email formato html a Segnalo Aggiungi: PHP - email formato html a Digg Aggiungi: PHP - email formato html a Boomark.it Aggiungi: PHP - email formato html a Furl Aggiungi: PHP - email formato html a de.li.cious Aggiungi: PHP - email formato html a Yahoo Aggiungi: PHP - email formato html a Stumbleupon Aggiungi: PHP - email formato html a Google Aggiungi: PHP - email formato html a BlogLines Aggiungi: PHP - email formato html a SocialDust.com Aggiungi: PHP - email formato html a Live.com Aggiungi: PHP - email formato html a Wikip.it
Top
 Profilo  
 
 Oggetto del messaggio: Re: PHP - email formato html
MessaggioInviato: gio mar 18, 2010 4:32 pm 
Non connesso
Novizio
Novizio

Iscritto il: dom apr 12, 2009 9:13 am
Messaggi: 6
Località: Milano
Ciao steven75,
si ho seguito i loro consigli e ho risolto.
Grazie



Condividi: Aggiungi: PHP - email formato html a Technorati Aggiungi: PHP - email formato html a OKNOtizie Aggiungi: PHP - email formato html a Segnalo Aggiungi: PHP - email formato html a Digg Aggiungi: PHP - email formato html a Boomark.it Aggiungi: PHP - email formato html a Furl Aggiungi: PHP - email formato html a de.li.cious Aggiungi: PHP - email formato html a Yahoo Aggiungi: PHP - email formato html a Stumbleupon Aggiungi: PHP - email formato html a Google Aggiungi: PHP - email formato html a BlogLines Aggiungi: PHP - email formato html a SocialDust.com Aggiungi: PHP - email formato html a Live.com Aggiungi: PHP - email formato html a Wikip.it
Top
 Profilo  
 
 Oggetto del messaggio: Re: PHP - email formato html
MessaggioInviato: ven mar 19, 2010 10:10 am 
Non connesso
Moderatore
Moderatore
Avatar utente

Iscritto il: lun mag 01, 2006 6:22 pm
Messaggi: 2062
ok.... sono gli stessi che ti avrei dato per quello ti ho chiesto se li avevi eseguiti.

_________________
My Computer .:. Rampage II Extreme - Core i7 940 - 3x2Go DDR3 1600MHz - ATI HD 4890 - Corsair HX 850W

sito web



Condividi: Aggiungi: PHP - email formato html a Technorati Aggiungi: PHP - email formato html a OKNOtizie Aggiungi: PHP - email formato html a Segnalo Aggiungi: PHP - email formato html a Digg Aggiungi: PHP - email formato html a Boomark.it Aggiungi: PHP - email formato html a Furl Aggiungi: PHP - email formato html a de.li.cious Aggiungi: PHP - email formato html a Yahoo Aggiungi: PHP - email formato html a Stumbleupon Aggiungi: PHP - email formato html a Google Aggiungi: PHP - email formato html a BlogLines Aggiungi: PHP - email formato html a SocialDust.com Aggiungi: PHP - email formato html a Live.com Aggiungi: PHP - email formato html a Wikip.it
Top
 Profilo  
 
Visualizza ultimi messaggi:  Ordina per  
Apri un nuovo argomento Rispondi all’argomento  [ 6 messaggi ] 

Tutti gli orari sono UTC +2 ore


Chi c’è in linea

Visitano il forum: Nessuno e 1 ospite


Non puoi aprire nuovi argomenti
Non puoi rispondere negli argomenti
Non puoi modificare i tuoi messaggi
Non puoi cancellare i tuoi messaggi

Cerca per:
Vai a:  
2000 - 2011 Manuali.it © - P.IVA 00992330670 - Tutti i diritti riservati - Note Legali - Condizioni di utilizzo del sito - Privacy - E' vietata qualsiasi riproduzione parziale o completa se non autorizzata - # Powered by Cykel Software
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
Traduzione Italiana phpBB.it
phpBB SEO