4,468 Topics

Member Avatar for
Member Avatar for PhoenixInsilico

I have an account in an mail server with email address eg. [email]amiyatulu@example.org[/email] but it does not allow sending more than 100 mails per day. Can I use postfix server to send mails on behalf of [email]amiyatulu@example.org[/email]

Member Avatar for kc0arf
0
364
Member Avatar for kytro360

Hows it going? In my program I want it to download certain messages, open them, find the HTML link, and at the moment want it to display it in a listBox. I am using the dll OpenPop for this. So far thats not happening and the only thing thats appearing …

0
102
Member Avatar for calebcook

Hi. I'm not sure if this is possible: I found out that Blogger allows you to email text, images, etc to a unique email address, and then it'll post the email as a blog post. I'm trying to create a system like that for my client. Is it possible to …

Member Avatar for mschroeder
0
184
Member Avatar for whiteyoh

Hi All, Can anybody see why the following function is ignoring the plain text part of the multipart? [code] $attachment = chunk_split(base64_encode(file_get_contents($filetoattach))); //Let's start our headers $headers = "From: $from_name<" .$from_name . ">\n"; $headers .= "Reply-To: <" . $from_name . ">\n"; $headers .= "MIME-Version: 1.0\n"; $headers .= "Content-Type: multipart/related; type=\"multipart/alternative\"; …

Member Avatar for cereal
0
113
Member Avatar for sammry

I worked on the code based on [url]http://www.daniweb.com/web-development/php/threads/123389[/url] but as per last answer to use the mail function outside loop ( [url]http://www.daniweb.com/web-development/php/threads/123389/708835#post708835[/url]), I still cant work with this script. Please help [CODE] <? $query="SELECT * FROM tbl_users WHERE ex_date between now() and adddate(now(), INTERVAL 7 DAY) ORDER BY user_id ASC"; …

Member Avatar for sammry
0
244
Member Avatar for ande-s

Hi Guys, I am currently looking for a Python solution to a project I am working on. I am VERY new to Python so please go easy on me. Currently, I have a server setup, only running Windows 7, and on that server, Thunderbird is constantly running checking for new …

Member Avatar for TrustyTony
0
267
Member Avatar for akshayphp

I am building an email service like gmail. I want to know that" how to offer users an email account under my domain?" For example- my domain is "abcmail.com", how to allow users to create an email like [email]akshay@abcmail.com[/email] I mean how to offer this service?

Member Avatar for Shanti C
0
69
Member Avatar for techyworld

I'm doing a registration form.I want to validate the email address before submitting the form using ajax.That is to verify if the email address already exist in the database.Can anyone help me please?I don't know what's wrong with these code! regist.html: <html> <head> <script type="text/javascript"> var http_request; //global variable function …

Member Avatar for twiss
0
1K
Member Avatar for jw3973

Hello. I am looking for someone with spare time to write a PHP app for me. I am just starting to learn PHP but something like this app is too advanced for me right now and I need it asap. Also, having it will go a long way to advance …

Member Avatar for jw3973
0
93
Member Avatar for countycowpoke

I am trying to send registration/ activation information via email, but don't want to store my authentication within the vb.net app and therefore not wanting to use .NET SMTP. I have the below php script that works from a website, but I can't seem to get the variables sent to …

Member Avatar for countycowpoke
0
397
Member Avatar for kiwimedia

[B]Sending email through PHP[/B] [B]Intro[/B] Thousands of websites use contact forms to communicate with their users. You will have almost certainly seen one if not used one to contact someone. The contact form will take the users information that he or she has filled in then send the data over …

Member Avatar for KingGold171
1
3K
Member Avatar for happygeek

[ATTACH=RIGHT]22256[/ATTACH]England just scraped to a hard fought win against a physical and enthusiastic Argentina side in their opening match of the 2011 Rugby World Cup campaign in New Zealand. But while sports fans the world over get excited about how their country is performing in the initial pool group matches, …

Member Avatar for ChrisHunter
0
457
Member Avatar for raghu.ndu

Hi, I have this PHP code to send mail with attachment... when I send mail without attachment I am getting the message but when I attach something I am getting the attachment but the message body is blank... please help!! Below is the PHP code : [CODE] <?php // Your …

0
111
Member Avatar for bkimbriel

Hey guys, I've been working on this for like 2 days now and I know it's something pretty simple to do, I'm just a rookie with php lol. Basically I have checkbox forms that I want to email all the checked values in. Here is my html: [CODE]<table class="pstable"> <tr> …

Member Avatar for ddymacek
0
138
Member Avatar for abhi10kumar
Member Avatar for touch_the_sky
0
349
Member Avatar for anand01

Hi all I need to send form data to email .. Can any one share some sample code .. Thanks in advance

Member Avatar for anand01
0
80
Member Avatar for TrustyTony

Dig up this for discussion thread request and some Googling. By little experiment found the different forms for sending message commands. Could no send in Python3 the code of program itself so only simple test "Hello". Sorry that subject is left incorrectly refering program name.

Member Avatar for JoshuaBurleson
3
2K
Member Avatar for vlowe

Im still trying to work this one out but what i would like to do is send an email if an alert is present. but not resend the email on every page refresh where the alert is still present. so i was thinking of using something like $_SESSION['sent_time'] to record …

Member Avatar for karthik_ppts
0
231
Member Avatar for zulfistyle

hi me is new in web development field.. plz any body told me about the script with the help of which i send image in my email....!!

Member Avatar for vibhaJ
0
97
Member Avatar for kexx

We are implementing a reporting system (.net 4.0, c#) that contains all the sender/recipient/timestamp information for all the emails for all the users. We have the requirement that this application should be able to communicate with Exchange 2007 SP1 and Exchange 2010 servers, thus, using the Exchange Web Service Managed …

0
153
Member Avatar for PythonNewbie2

Hi guys, I want to create a relatively simple web application. For now, let's just say there's one user of this app. He gets assigned an email address of [email]user1@mydomain.com[/email]. The idea is that the user can send an email to that email address with either text or a picture …

Member Avatar for tajendra
0
150
Member Avatar for whiteyoh

Hi All, Im trying to get my mail to display like the following From: Paul "paul@paul.com" Reply to Customer Services // with the email only showing when clicking reply my current headers are set to [code] $headers .= "To: " . $dsv_to . " <" . $dsv_to . ">\r\n"; $headers …

Member Avatar for pritaeas
0
88
Member Avatar for JoshuaBurleson

I'm having issues with a third level Toplevel in tkinter, that is to say having a toplevel popup from another Toplevel. [CODE] self.emailbttn= Button(self, text='Email', command=self.clientchooser) def clientchooser(self): showing.withdraw() client_choose() def client_choose(): global client client=Toplevel() client.title=('Choose Email') client.geometry=('800x600') Client(client) class Client(Frame): '''Choose Email Client''' def __init__(self,master): super(Client, self).__init__(master) self.grid() self.create_widget() …

Member Avatar for TrustyTony
0
206
Member Avatar for cgull

Hello, Does anyone know how can I setup an email server on my local machine, with google or my host's server? Or do you know of any site that explains how to do that? Thanks

Member Avatar for cgull
0
88
Member Avatar for emreozpalamutcu

I'm working in this project that has a feedback form and in this feedback form there is only body, so it doesn't ask for subject and who it's from. And all the messages send from will go to a custom mail account, for example [email]Example@custom.com[/email] How can I do this …

Member Avatar for cent91
0
608
Member Avatar for fargfarbot

I have a desktop computer that is running Window XP Media Center and Firefox 2 with a broadband connection. The other day, right in the middle of browsing, it just stopped responding. I tried IE 7 and that was giving me the same error message. "Cannot find DNS Server." I …

Member Avatar for Reverend Jim
0
120
Member Avatar for calebcook

Hi. I’m creating a system for my client where he goes to a page where he types in a letter. The text is saved as a file (preferably PDF) and then sent as an email to a printing service. I’d prefer not to save multiple PDFs on my server, so …

Member Avatar for tiggsy
0
1K
Member Avatar for DisasterPiece

This wont send the email [CODE]Dim Mail As New MailMessage() Dim SmtpServer As New SmtpClient SmtpServer.Credentials = New Net.NetworkCredential("already added email and pass", "notshowing") SmtpServer.Port = 587 SmtpServer.Host = "smtp.gmail.com" SmtpServer.EnableSsl = True SmtpServer.EnableSsl = True Mail.To.Add(TextBox1.Text) Mail.From = New MailAddress("tykohlerproductions@gmail.c… Mail.Subject = "Frenemy Username and Password." Mail.Body = "Heres …

Member Avatar for kingsonprisonic
0
86
Member Avatar for mrhankey

hi, i have asked something similar to this before. basically i have looked around and i can see that it seems it is possible to send email from a different email account using php. but what is the best way to stop the server being blacklisted? it want be used …

Member Avatar for mrhankey
0
117
Member Avatar for anglerman247

Hi I'm new to this forum and I am looking for a little help. I was wondering if someone could provide some code that allows someone to enter a message into a comment box, hit submit, and then that message is sent to an email account. I also have two …

Member Avatar for tej kharka
0
501
Member Avatar for muzamilsw10

please Help me out, i'm new in java and i want code for following program. write a program that takes a series of email addresses as a command-line argument and, after parsing/processing the input, display the addresses separately and in alphabetical order at the command window. For example if the …

Member Avatar for NormR1
0
222
Member Avatar for s0bigg

I am facing a strange error when I execute a php mail script. Its related to server could not verify the sender. I see following error: Failed to add recipient [email]email@domain.com[/email] [SMTP: Invalid response code received from server (code:550, response: Verification failed for unrouteable address Sendor verify failed)] Would you …

Member Avatar for pritaeas
0
532
Member Avatar for DCorn

After a client sets up a personal account a email they will get a notice after a specific time frame, say six weeks. This will be used for a retail client that would like to have people sent specific services tailored for them.

0
55
Member Avatar for king_saqib

Asalam to every one im a begnner in programming hoew can i send an email through vb exe please help me in under standing:(

Member Avatar for debasisdas
0
300
Member Avatar for whiteyoh

Hi All, Im in the middle of making a dynamic multi part email and have come accross a snag. The function receives a file, and depending on the content of that file it then processes the relevant headers and mixed parts, however, rather than echoing the items i need to …

Member Avatar for whiteyoh
0
141
Member Avatar for mwenyenia07

i am using mail() function to send email with php. the following is the sending script. <?php $to = "bonjourcava@gmail.com"; $subject = "Contact Us"; $email = "bonjour" ; $message = "jee tres bien" ; $headers = "Billing information"; $sent = mail($to, $subject, $message, $headers) ; ?> it displays a success …

Member Avatar for manojcbit
0
94
Member Avatar for satish.paluvai

hi, if any body knows please send the information about L value required error in c++. if anybody knows please send it to <email snipped>[EMAIL="satish.paluvai@gmail.com"][/EMAIL] satish.paluvai:?:

Member Avatar for Narue
-1
270
Member Avatar for s0bigg

I have a MySQL database that has a list of items which gets updated everyday. The database is truncated everyday and filled back with the recent posts. After it is filled out, I need an automatic system that will send out the emails to users who have provided certain keyword. …

Member Avatar for s0bigg
0
106
Member Avatar for vasuv

Hi, we have some scheduled jobs.The jobs will truncate the data and inserting the data and update the data.This process will happen daily. we receive files like truncate_file,Insert_file and update_file to our INBOX in scheduled time.once we got the update_file we will connect to front end application by using user_id …

Member Avatar for L7Sqr
0
201
Member Avatar for lakodajin
Member Avatar for piyush2355
0
250
Member Avatar for igotdreams

Would you like to know when the Google spider or any other spider comes by your site? Well now you can with this handy snippet. It will send you an email for everypage it visits.

Member Avatar for jsmall26
0
162
Member Avatar for abs0lut01

I know how to select the members who did not post for every topic. I need to send an email every 24 hours to the members who did not post for every topic. Could you please help me?

Member Avatar for hostobtain
0
202
Member Avatar for kentf

On a site I'm building, on the first page there is a "Featured Member Of The Day!" This is set up through a php script to randomly selects a new member business every 24 hours from the MySQL DB... We've got this all working with the MySQL DB and the …

Member Avatar for coolasr
0
355
Member Avatar for VanHackman

Hello, Just wanted to know if its possible to perform server mirroring with a postfix-based mail server. If so... which will be the best way to do it?. Thanks!, VanHackman

Member Avatar for VanHackman
0
159
Member Avatar for blaaam

Hi. I'm new here and I'm new into coding so i have question. Where i can get Simple Php website with login and singup function. I was search in google.com but i don't find nothing what would be good enought.And i don't whant build it my self, becous i can …

Member Avatar for G&G Designing
0
187
Member Avatar for Ritesh_4

HEllo Anyone can pls tell me how I can add an email address to be used as a link on an image in photoshop cs5? I've seen some tutorials on how to add a url, but in my case it is not working at all

Member Avatar for Ritesh_4
0
162
Member Avatar for saybabs

I need PHP script to handle incoming email.....i will really like it if you can get me a link in order to download the script. Secondly, I need help on how to arrange the incoming message in a table in order for the users to be able to select and …

Member Avatar for pritaeas
0
56
Member Avatar for bar457

Help required with failure to send of some email attachments. I am suddenly having problems sending some email attachments in Outlook 2003. I am using email provider uko2 with BeThere ISP. I have two independent computers which are both connected to the same router and each has the same attachment …

0
89
Member Avatar for rakwel10

How? Im developing a site. It has an email app that sends email. Im trying to know how to do it the other way. This time, gmail or ymail will send and my site will receive. How? I'll wait for your replies.. Thanks for the help..

Member Avatar for chrishea
0
122
Member Avatar for happygeek

It may seem like email has been around forever, but actually it is exactly 40 years since the first email was sent by the man credited with inventing it, engineer Ray Tomlinson, on Wednesday 8th June 1971. [attach]21227[/attach] Tomlinson was a computer engineer who was working for a company that …

Member Avatar for GrimJack
1
4K

The End.