Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP






SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Sending Mails


I want my site to send scheduled e-mail messages to some of the site members ..
How can that be done using php ? Does mail() function perform this task ?




View Complete Forum Thread with Replies
Sponsored Links:

Related Messages:
Sending Mails Though Php
How should mailto() function work. I want my site to send scheduled email messages to specific mail addresses retrieved fromt he database. Knowing that i have e-mail addresses under my domain.

View Replies !   View Related
Script For Sending Mails
i'm searching a php script which is able to send mails.
It should be able to tune the font size and write a text bold.

View Replies !   View Related
Sending Authentication Mails
when users are register on our website, their username, encrpyted password and so on are stored in the mySQL database. Many phpbb sites though send an activation mail to the email address specified by the user. The user then needs to select a link to get his
account activated. I would like to implement this process, can anyone tell me how this is done?

View Replies !   View Related
Problem Sending E-mails
When I send e-mails to users they(emails) always reach them in text format, independent of the users preferences. Also, when I send test e-mails the one that is sent as in html format contains urls next to url names, i.e. all the web addresses in href= are seen in the e-mail.

View Replies !   View Related
Mail() Sending Double E-mails...
I have the following function setup to submit some form data to a client and to myself. It works, however it sends two copies of the e-mail to each of us.

Note that I'm using simply '' after the headers as '' was printing the headers in the body of the e-mail rather than apply the header.....

View Replies !   View Related
70 Characters Limit When Sending Mails
I have built a "contact us" form on my Web site and am using the PHP
mail() function to send an e-mail to the Webmaster (that's me :-))
Everything works fine. What I would like to know however is whether it
is always necessary to limit each line of the message to 70 characters,
as is written in the documentation of the function (writing for
instance $this->message = wordwrap($message, 70)).
It seems to work fine without doing it in my case and the text is
easier to read.
I guess there must be a reason for the limit, but how to find out when
it is needed?

View Replies !   View Related
Sending Mails To Internal Mailboxes On Exchange Server Using PHP?
Is it possible sending mails to internal mailboxes on Exchange server using PHP? And if yes, how?

View Replies !   View Related
Sending Mails Without Using Scheduled Tasks (crone Jobs)
Can we set up a mail program that the mail can sent frequently..ie may be daily or weekly or monthly... with out using scheduled tasks or crone jobs.

for eg .. can we create a page that works like the scheduled tasks page( there we can set up the time at which time the program  will execute )..that means we have options in our webpage to set up the time  at which the mail will sent. for eg..every monday.. can we set up this in the program without using scheduled tasks or crone jobs. can we run our page  frequently without using crone jobs .

View Replies !   View Related
Php Sending Mails To Mailing List Show Strange Headers
i need to send a mail to one mailing list address.when i sent to this the from address comes as newsletter-request@abc.com; on behalf of; ABC[abc@abc.com]
where newsletter@abc.com is the mailing list id abc@abc.com is the moderator id

when i change the to address to any other email address other than this mailing list, the from field works fine. i have given the mailing list, in the Bcc header.

View Replies !   View Related
Send Mails With Delay After 25 Mails
I am writing a program to send newsletters.i am sending newsletter using mail function in Php.I want to put a delay after each 25mails.How can i put a delay.

View Replies !   View Related
E-mails In Php
i have been using php mail function to send out emails. but my problem is if i have a gmail or any professional mail id, the mails are sent out, but for private domains like .edu the emails are not delivered?

View Replies !   View Related
E-mails Not Getting Through
The visitor fills in the form and clicks "request" and an e-mail is sent to both the visitor confirming the bookign request and an e-mail gets sent to the site owner askign for details.

The script is all working apart from when the e-mail is sent to the visitor the e-mail gets put in their junkmail folder so they dont receive it, i have tried this with 4 of my different e-mail address (Btinternet, work mail server, hotmail) and they are all put in the junk folder..

Is there something I have to put in the mail() function that doesnt put it in the junk folder? otherwise this script is pointless..

View Replies !   View Related
Sending Mail: Choice Between Sending Receipt, Or HTML Formatting
I'm using PHP's mail function to send out a message via email.

I would like for this email message to send a receipt when read as well as send an HTML formatted email. Both aspects are important to me.

I know this is a product of the mail header. This is the format I currently have:

mail(to, subject, body, "From: name <email>
Disposition-Notification-To: name<email>
Content-type:text/html;charset=utf-8");

This prompts the email program to send a reciept, but the email message is not in the HTML format, and even contains "Content-type:text/html;charset=utf-8" at the top of the body.

If I switch the order to this format:

mail(to, subject, body, "From: name <email>
Content-type:text/html;charset=utf-8
Disposition-Notification-To: name<email>");

This sends the email with HTML formatting but does not prompt the sending of the receipt. I also get "Disposition-Notification-To: name<email>" at the top of the email message.

This tells me there is a problem in the transition between the headers, which currently is "".

What am I doing wrong?

View Replies !   View Related
'umlauts' In E-Mails
I need to send umlauts(öäü) in my E-Mail-subjects (yes because I'm German), but they need to be encoded. When I send an email with Outlook, it converts "Urlaub ist schön" to
Subject: =?iso-8859-1?Q?Re:_Urlaub_ist_sch=F6n?= How can I do that encoding by myself or is there a special function for that ??

View Replies !   View Related
As CGI Can't Send Mails
i have two different machines one with manually compiled PHP 4.3.9 and another
with PHP 4.3.9 as CGI and they seem to work just fine with only one difference:
the one that as PHP as CGI can't send mails. Why is this happening? How can I
retrieve the reason why the mail function fails?

View Replies !   View Related
Bounced Mails
How to get bounced mail details?

View Replies !   View Related
Scheduled E-mails
I would like to create a "send out scheduled e-mails" function in my
PHP application.
I guess it would be hard to program this function using PHP.
What ways can I implement this?

View Replies !   View Related
Send Many More Than Two Mails
I have an email script in php that sents to two email addresses. I need to know how to expand this to send many more than two(Up to 10). Below is the script. This script is activated from another page with a form on it. Code:

View Replies !   View Related
PHP With Received Mails
how I make it so when somebody sends a mail to my website a PHP script is ran which can read the subject, body, and e-mail that sent it This will be very useful for a registration system I am making.

View Replies !   View Related
Searching E-mails
I have created a script to download and search an e-mail, I am looking for away to just get the line after subject: Just need that line to start with, Could some point me in the right dir.

View Replies !   View Related
Reading Mails
Can i send mails using this code to anyone. i mean anyuser@anydomain.com from my system. i have a html interface for this and is using sendmail. will it work. is ther any configuration Code:

View Replies !   View Related
Mails Goes To Junk :(
i tried to send mails from php using mail function but it goes to junk mail in hotmail although it works for yahoo, is there any header that must be included ? i tried to add "From" header (From: name <mail@mailserver.com>).

View Replies !   View Related
Piping Mails
After going through a tutorial on redirecting mails from an email on ur server to a script on it. I actually set out to try it by jelling the whole stuff together. I had to use my Cpanel to set up the forwarding but when i tested it, i got the mail delivery error: local delivery failed.

View Replies !   View Related
Send Many Mails
I have a site with more than 50,000 user and I want to send newsletters to each of our site user. If I use the normal "mail" command in PHP, it will create a heavy load for the server so that after sending the email, because of the heavy traffic which gets created on the server, the email will either not be send or it can take up to one week till it gets send out.

View Replies !   View Related
Securing E-mails
I have a form located on my site where the transmitted information needs to be secure (i.e. sensitive information). I am using the php mail() function through the SMTP server on Microsoft IIS 6.0 to deliver these messages to one specific e-mail address. I currently have SSL installed and located on the pages that house the forms however I need the email to be encrypted to the recipient and then for them to decrypt the information.

View Replies !   View Related
Mails Stuck In Queue
I am using local smtp server to send mails in windows 2003. Php is showing
success message, But the mail is stuck in C:/Inetpub/mailroot/Queue folder. Any
workaround for this problem as a lot of googling didnt help.My server is Apache
and smtp is running too.

View Replies !   View Related
Personalised E-mails With If Clauses
I am building a system to deal with inscriptions to events. There is a
backoffice which allows administrators to send emails to all or to a sub-set
of the participants. The administrators can enter the text of the emails,
using a template-like syntax to add fields from the database. For example :
"Dear {title} {first_name} {last_name}" will produce "Dear John Doe". But I
would need to add a degree in the way emails can be personalised, with if
.... elseif ... elseif ... else ... clauses.

For example :
{if (transport = 'train')}
We noted that you will come by train + instructions to come from the
train station.
{elseif (transport = 'plane')}
We noted that you will fligh to Paris + instructions to come....
{elseif (transport = 'car')}
Blablabla....
{endif}

I could use PHP syntax for the content of the mail and just eval( ) it or do
something like that, but I don't want to allow anything else than if ...
elseif ... else ... clauses. I could also use a template system (Smarty) but
for many reasons I don't use any of those anymore.

View Replies !   View Related
Automatic Scheduled E-mails
I have a website that I am building in PHP that I would like to send e-mails
to users every 2 days to inform of new updates. I know how to trigger the
sending of e-mails if a user enters the site, and can limit this to only
happening once every 2 days, but I am interested to know if it is possible
to have PHP send e-mails automatically in case no one visits the site?

View Replies !   View Related
Reading POP3 Mails
I want to read POP3 mails through PHP Script. Is it possible? If it is possible.

View Replies !   View Related
Reading Outloook Mails In PHP
Is it possible to read Outlook mails in PHP?? I would like to create a
php program that reads mails from a particular person which are
downloaded in MS Outlook.

View Replies !   View Related
Fetching Mails From Hotmail
I am currently trying to make a script that fetches mails from MY hotmail account from a certain Email. Is this possible with PHP ??

View Replies !   View Related
Read Mails From Server
i am in need of a open source code to read mails from the server and display in the application.

i searched all over the net.. but not able find one. i want to display the emails and there should be a link to reply for that mail.

i will be very gratefull if any one can help me how to do this function.

View Replies !   View Related
PHP Mailer Send Out Around 70,000 Mails
i'm using the php mailer software (from the tutorial on this site) to send out a few emails here and there. I now need to make it work a bit hard and send out around 70,000 do you think it would handle (perhaps if i delay each batch in 100's of mails??) this or am i better with another method could any body point me in the direction of somewhere to read up on this?

View Replies !   View Related
Downloading Mails From Gmail
anybody here has downloaded mails from gmail account along with attachment.

View Replies !   View Related
Processing Mails In .dbx File
I have a folder in outlook express with log files sent to me by mail These sit in a .dbx file. Is there a relatively easy way of reading the log contents from that file or
should I save all messages as text or .eml and read these ?

View Replies !   View Related
Recieve Mails And Store It Using Php
We can send mail using php but In my project we need to generate a inbox and draft for the particular users , So how can we recieve mails from server?

View Replies !   View Related
How To Send More Than 100 HTML E-mails
We have a database with thousands of e-mail addresses, but our users can filter through those. Normally, they will filter down to about 100 e-mail addresses, and the way we have it set up now, they can check those and click an "E-mail Selected" button.

That button is simply linked to a href="mailto:" link that will open up an Outlook message with those e-mail addresses in the To: field.

But the problem we're having is that Outlook doesn't accept over about 60-ish e-mail addresses to send to. If a user clicks the button to try to send an e-mail to 90 users, the Outlook message doesn't even show up.

So now I need to know if there is a better way to send out these messages. Our users need to be able to send a fully customizeable HTML message (like you would design in Outlook) to more than 60 e-mail addresses. What are my options here? I already use PHPMailer for sending e-mails to one or two e-mail addresses.

View Replies !   View Related
Deleting Mails In POP3 Account
I am getting lot of mails after submiting my site to some FFA link site. I am using Yahoo! mail ( User name : w3boby Password: bobee ) to receive all these Junk mails. They allow POP3 access.

I want to delete all these mails in a single go. My PHP doesn't have IMAP support. Can i use socket to connect to POP3 mail box and Delete all mails inside.

View Replies !   View Related
Get E-mails From A Pop3/mail Server
i want to make a webmail script but i don't know how to get e-mails from a pop3/mail server (with out deleting them).

View Replies !   View Related
Send E-mails To Bulk Contacts !
I want to know what the best way to send one e-mail to a lot of contacts ( my members here in my situation ).. as the newsletters for example..

using php code for sure note : if this would make a diiference then : the e-mails address are stored in mySQL table.

View Replies !   View Related
Security - Blank E-mails By Spammers.
I have an online form - script below. I thought it was secure, but
last night I got 20 or so blank e-mails from my site and one that
bounced ? Is this script secure or am I being abused by spammers?

PHP SCRIPT:

View Replies !   View Related
Moving Mails Using Imap Functions
i have 2 little questions about this issue:

1. how can i make sure that if i sent a mail that it goes into my sent folder using imapfunctions.

2. how can i move a mail from one folder to another using imapfunctions

View Replies !   View Related
Send And Receive Mails Via PHP & Browser
Could anyone send me a link or a script, which is able to send e-mails, to receive them with a nice interface etc?

View Replies !   View Related
Checking Valid E-mails Using Regex?
Does anybody know how to check e-mails using regex.

E.g. i have a text box where somebody inputs an e-mail address. And if it doesn't contain certain e-mail address formats then return an error message.

Characters such as "@" or "."

View Replies !   View Related
Mails Land Up In Bulk Or Spam
I am using the mail() function to send mails. But the mails go to the Bulk Folder in Yahoo accounts or Spam in Netscape or other accounts. Y?

View Replies !   View Related
Move Mails From One Into Another POP3-Account
I'm going to write a anti-spam-program based on a Whitelist. "If the mail sender is found in the database, my program should move the mail into another mailbox". The mailserver fetched the mails from the clean pop3-account. The problem is a problem because the function imap_move() can only
move mails from one folder in the mailbox into another folder.

View Replies !   View Related
Text/HTML E-mails Problem
Well I'm having problems sending Text and HTML e-mails. I'm trying to send a e-mail on HTML format. The problem is that when I receive the e-mail I receive it on plain text showing the html script.

When I try to send a plain text e-mail the different tabs that I use and the space between paragraphs that I leave are deleated.

View Replies !   View Related
Work Around A Mail Limitation (200 Mails Per Hour)?
A simple newsletter mailer script that sends an e-mail to approximately 700 opt-in subscribers in BCC. Web host prevents mail due to limit of 200 e-mails per hour.Intended work-around: - Send the e-mail to 3 kids per minute?

I'm open to any suggestions. I've not been able to find a good solution by searching forums. I'm not asking for anyone to write the script for me, but if you could point me in the right direction, or suggest a different work-around.

View Replies !   View Related
Problem Receiving Notification Emails To Mails
I'm sending emails to the subscribers of my site using mail() with a fourth parameter to specify the From: and Reply-To: headers. They seem to be sent correctly and the users may reply to them and I get the replies in the mailbox identified by these headers.

The problem is some email addresses I'm sending email to are incorrect, and I should be receiving the email notification saying that the email could not be delivered. But I'm not receiving these messages in my mailbox. Any ideas why this could be so? PHP Code:

View Replies !   View Related
Send A Large Amount Of Mails Via PHP And MySQL.
how am I able to send a large amount of mails via PHP and mySQL. Somebody told me that it is possible to crash the mail-server when you try to send many mails to different locations.

View Replies !   View Related
Check How Many E-mails A Member Is Allowed To Send Out.
I'm having a small problem with my sql syntax. Basically I wanted to check how many e-mails a member is allowed to send out.  then using sql num rows to see how
many they have sent. Code:

View Replies !   View Related
Use Yahoo SMTP Server To Send Mails
how to know yahoo SMTP server to send mails from my website, i don't mean the code, everything is fine with it but i get this message when i send:

SMTP server response: 530 authentication required - for help go to http://help.yahoo.com/help/us/mail/pop/p... in E:MYDOMAINwwwindex.php on line 24

i tried going to the website but didn't help, i also tried to change port to 465 but didn't work too

SMTP: smtp.mail.yahoo.com
PORT: 25

View Replies !   View Related

Copyright © 2005-08 www.BigResource.com, All rights reserved