Ask a Question related to PHP Development, Design and Development.
-
morgan #1
send with mail() php generated page
I know how to send an email with attachment using mail() but i cannot
discover how to send the result of a php generation in attachment by mail.
I would like to send an html attachment and/or directly an html mail. This
attachment/html mail must be the output of a .php file.
I discovered that maybe i must use something eval() or output_buffer... but
i don't know in which way i should operate...
thank you
morgan Guest
-
Making a page values of list and send mail
Hello Dreamweaver, I need to make quite a simple web page. It has a list of 10 items with radio buttons. The user selects some of the items by... -
the script hangs up when i try to send mail with attachments using MAIL::Sender...???
As said in the topic... when i try to send an e-mail message using Mail::Sender the script hangs up before execution of $sender ->... -
Can't send/receive Mail (Apple Mail)
Somehow, I can't send or receive any E-mails... I'm using apple mail and tried with entourage, too... I also checked user name, password..etc... -
Send e-mail from asp page
Hi, we just migrated our web server to a new server. And we are having a problem with order e-mails the server will stop at a line in the... -
Send Same E-mail To Multiple E-mail Addresses?
"Ralph Swanson" <r.swanson@sbcglobal.net> wrote: You need one. First add all the Addresses to your Address Book, then go File > New Group and... -
Colin McKinnon #2
Re: send with mail() php generated page
morgan spilled the following:
> I know how to send an email with attachment using mail() but i cannot
> discover how to send the result of a php generation in attachment by mail.
> I would like to send an html attachment and/or directly an html mail. This
> attachment/html mail must be the output of a .php file.
> I discovered that maybe i must use something eval() or output_buffer...
> but i don't know in which way i should operate...
>
> thank you
Isn't it simpler to just....
$output=implode("\n", file('http://localhost/page_to_send.php'));
mail($address, 'here\'s the html!', $output);
C.
Colin McKinnon Guest



Reply With Quote

