4,468 Topics

Member Avatar for
Member Avatar for suavedesign

I coded an html email that I tested in Gmail, YahooMail,Thunderbird and Outlook 2003, as well as IE and Firefox. What other email applications should I test it in, and how can I get these applications on my pc? Thanks.

Member Avatar for suavedesign
0
84
Member Avatar for gennesis

I Could not understand what is happening on my code. When i try to send an email to another email address it keeps on sending on my gmail account. eg. From:xxx@gmail.com to: [email]yyy@yahoo.com[/email] The email which supposed to be sent on [email]yyy@yahoo.com[/email], instead it send to [email]xxx@gmail.com[/email]. here is my …

Member Avatar for gennesis
0
189
Member Avatar for .:n'tQ-boy:.

Hi every one! In localhost, my site can send email easily (using smtp and phpmailer) but when i upload my codes to oni.cc, that feature does not work at all! Should i config some things or did i do something wrong?

Member Avatar for pzuurveen
0
131
Member Avatar for mmazeemahmad

Hi all, i have a scenario in which there are two subscribed users (to database) in my web app.......now if one of it wants to send a message (just like mail but not sms) to another without using any email account...... but with the help of that website and some …

Member Avatar for hericles
0
325
Member Avatar for me!

Hello everyone, I have a server running plesk 10.2.0 with Qmail, inside we host a website and we also run our own mailing list. For the mailing list we use the software ListMessenger 2.1.0. We have no issues what so ever with the server, everything runs good even normal user …

Member Avatar for me!
0
209
Member Avatar for sam1

Currently sending emails and setting the Return-path of an email(System.Net.Mail) works if i put : [CODE]MailMessage msg = new MailMessage(); msg.Sender = new MailAddress("not-deliviered@sample.org"); msg.Headers.Add("Return-Path", sReturnPath);[/CODE] but if I send a successful email it would say delivered on behalf of the email above.... any ideas how to resolve this not …

Member Avatar for thines01
0
239
Member Avatar for BenzZz

Hi, I've already created registration and login scripts for my application, however i now want to include an option for registered users to reset their password if they have forgotten it and cannot log in. As currently, passwords stored in my database are encrypted, they cannot just be emailed to …

Member Avatar for BenzZz
0
192
Member Avatar for TrustyTony

Inspired by discussion in [url]http://www.daniweb.com/tutorials/tutorial238544.html[/url] (test cases are from there) I used my magic pattern matching function transformed from numbers and adding the parts length checking loop. I like my own solution better, I do not know about you.

Member Avatar for TrustyTony
0
2K
Member Avatar for Thevenin

Hi all, I'm trying to use the jQuery datepicker to create a booking date selection thingy on a personal plugin I'm trying to develop. This is the code I'm using to take an "arrival" date and a "departure" date, after click on the submit button the user is redirected to …

Member Avatar for Thevenin
0
422
Member Avatar for Rincy20
Member Avatar for karthikh87

Dear frnds i am new to this and please help me grow and gain knowledge on asp.net i want to know how to send contact form to gmail i wanted code please do the need full i wanted code in C# asp.net

Member Avatar for vimit
0
216
Member Avatar for alan_ot

Hello all. got such problem. tested email function with my shared hosting and found out that i can send emails from form only to my domain emails accounts. nor @gmail.com no @yahoo.com do not receive emails from my site (domain). what kind of problem can it be? thank for any …

Member Avatar for alan_ot
0
129
Member Avatar for gerbz

what's wrong with my code? <?php error_reporting(0); // ' Send me an email' script if($_POST['submit']) { //get data from form $name = $_POST['name']; $message = $_POST['message']; if($name&&$message) { // existance check $namelen = 20; $messagelen = 300; if(strlen($name)<=$namelen&&strlen($message)<=$messagelen) // length check { // everything is ok! //set SMTP in php.ini …

Member Avatar for alan_ot
0
118
Member Avatar for mhull27

I was curious if making a javascript alert a PHP mail form and would send with that. Would it be possible, and would it be secure from email harvesters? Thanks!

0
85
Member Avatar for afrogfx

[B]Form.php[/B] [CODE] <form autocomplete="off" enctype="multipart/form-data" method="post" name="form"> <p></p> <div class="form-elements-malling"> <label for="fullnamemalling">Name<br /></label> <input type="text" name="fullnamemalling" id="fullnamemalling"/> <span></span> </div> <p>&nbsp;</p> <div class="form-elements-malling"> <label for="emailmalling">Email<br /></label> <input type="text" name="emailmalling" id="emailmalling"/> <span></span> <input type="submit" value="Submit" style=" background:#0060a1; color:#FFFFFF; font-size:14px; border:0; " class="submit"/> <span class="error1" style="display:none"> Please Enter Valid Data</span> <span class="success" style="display:none"> …

Member Avatar for sidra 100
0
149
Member Avatar for buykona

I received the below website but for some reason the email button is not working properly. I'm not getting emails at sales@buykona.com I even try sending one myself, it didn't work. Can anyone help on this? Thanks, Julio <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta …

Member Avatar for pritaeas
0
128
Member Avatar for aki2all

When I am sending via Gmail using phpmailer, the email is taking a long time to send and also sometimes it is not going. I am using XAMPP as localhost. Here is my Code: if($_POST['submit']{ /*MAIL PART BEGINS*/ //error_reporting(E_ALL); error_reporting(E_STRICT); date_default_timezone_set('America/Toronto'); require_once('class.phpmailer.php'); //include("class.smtp.php"); // optional, gets called from within class.phpmailer.php …

Member Avatar for pritaeas
0
2K
Member Avatar for compulove

I am trying to make a registration form that when a user enters in their information and clicks the submit button the information will go to someone's email. If someone could send me a website with tutorial on this or lead me in the right direction that would be great! …

Member Avatar for Pri Bhowmik
0
230
Member Avatar for vizz

Can anyone help me for email message parsing and header parsing for reading multilingual email messages?

Member Avatar for diafol
0
90
Member Avatar for sakarora

please help me..!! i urgently need a php script which would send email to a recipient if changes/insert occur in database. Details: suppose i have table name employee with fields: emp_id name email status 1 abc abc@xyz Yes 2 xyz xyz@acb NO now, say if status of emp id changes …

Member Avatar for sakarora
0
129
Member Avatar for Shillz

I have been trying to send mail through my c# website, but kinda stuck up somewhere and not able to figure out the problem. :-/ M getting SmtpException saying "Failure sending mail". Please help.:icon_confused: [CODE] MailAddress fromAddress = new MailAddress("abc@gmail.com", "n1"); MailAddress toAddress = new MailAddress("xyz@yahoo.co.in", "n2"); const string fromPassword …

Member Avatar for Shillz
0
208
Member Avatar for LegoBeast

Dear All I have made a successful html form with mail.php "thing" my only problem is I want to be able to redirect to 2 different thank you pages based on a value entered in the html form. Value field is "Type1" and people can enter either burger, farm or …

Member Avatar for urtrivedi
0
250
Member Avatar for nelly_1005

Hey guys, Basically i want to create a database in Access 2002 that will hold names of functions of a mobile phone. When the user enters a search the databse should query the information held within it, display the appropriate search results. It should be able to serach for precise …

Member Avatar for ChrisPadgham
0
905
Member Avatar for binoy.mathew

Hi, I am building a Contact Us Email Form. My email sending part is working fine. I just want to confirm one thing with experienced programmers. Once I click the send message button, I am calling a function to send the mail. Then I get the message saying the mail …

Member Avatar for stbuchok
0
153
Member Avatar for IanArcher

I have clients who send email messages to a specific e-mail address, and i have a script that will automatically update the MySQL table with that data from that e-mail and will publish it to a web page. Images inserted into the emails cannot be seen on a web browser, …

Member Avatar for hakeemtunde
0
1K
Member Avatar for Secret Agent

[url]http://www.virtuosonetsolutions.com/shop.php?cat=104&[/url] I am trying to make this an instant quote forum based on what I assign each item its price. Basically, say a person selects one item per field and it adds it calculates the total instantly including any setup fees. Then, I want them to have the ability to …

Member Avatar for fullyloaded1987
0
204
Member Avatar for kukula

Hi everyone, I have problem with form at my site. When you fill the text boxes it works fine but when you click SEND, the site is refreshing, form is clear and no message has been sent. My knowledge about PHP is very low. I found the tutorial which shows …

Member Avatar for fobos
0
224
Member Avatar for Catweazle

Hi, and welcome to TechTalk. Perhaps the first thing you should do is have a good read of the information contained in our FAQ section: [url]http://www.daniweb.com/techtalkforums/faq.php?[/url] There you will find: [url="http://www.daniweb.com/techtalkforums/faq.php?faq=daniweb_faq#faq_rules"]Forum Rules and policies, Webmaster Information, Privacy policy. [/url] [url="http://www.daniweb.com/techtalkforums/faq.php?faq=vb_faq#faq_vb_user_maintain"]User Maintenance, General forum usage, Reading and posting messages.[/url] There is …

Member Avatar for WaltP
3
1K
Member Avatar for Sars

Hi guys. Im a noob programmer trying to make a trainer. This is just for hobby. I been using borland c++ builder. I made my dialog and button. I need the button to when pressed access a process and change the value of 5 offsets. I have the offsets and …

Member Avatar for richieking
0
304
Member Avatar for daniel36

I am unable to understand how to use email address of user at another place in same page of code [CODE]$message2 = Swift_Message::newInstance() ->setSubject($row3['subject']) ->setTo(array($user['email'] => $user['username'])) ->setFrom(array($core->site_email => $core->site_name)) ->setBody($newbody2, 'text/html');[/CODE]

Member Avatar for pritaeas
0
81
Member Avatar for jacob21

How I can do: 1. Upload multiple files into folder. 2. Then fetch those files that had saved in a folder. (I have to upload once but fetch again and again ) 3. and Then attach those files one by one and send to specified email/s.

Member Avatar for jcarbillon
0
176
Member Avatar for IanArcher

How can I make it so when I e-mail for e.g. [email]news@example.com[/email] text/information of the e-mail is written into a mysql table? It would extract the contents of a new email and write them into MySQL table. This table manages news articles on the website, so in the MySQL columns: …

Member Avatar for fobos
0
888
Member Avatar for nam.aggarwal

Hi, I am building an application for my company and need to integrate outlook and Exchange server with the web application... It should be able to access outlook calender and make entries. Also should be able to send mails via outlook. Need a start Help

Member Avatar for cereal
0
88
Member Avatar for Mr.BunyRabit

i got an example form roseindia on how to send an email. Now it works perfectly like this, and i can send mail to my email adress with that code (thats just a part of it) [CODE]String host = "192.168.1.14"; String from = "Admin@Admin.com"; String to = "myEmailadress.com";[/CODE] but the …

Member Avatar for Mr.BunyRabit
0
433
Member Avatar for static

Hi everyone, I am facing the error that the system is unable to send relay email. Before I post my code, please correct me if my understanding on the SMTP is wrong on below scenario : A - the server where the exchange server was set up B - the …

0
47
Member Avatar for devinodaniel

I'm trying to send a confirmation email to the person who submitted this "ticket" but it's not sending. I know the right info is there it just seems like I'm putting something in the wrong spot. Anyone help me out? [CODE]<?php include("database.php"); $today = date("M d Y"); $sql="INSERT INTO info …

Member Avatar for dineshsjce
0
197
Member Avatar for mangel.murti

Hi all, i attached my campaing field with img.i want to design tables such as when adding a campings and by trigger mode selected by user based on that email should be fire frm db. i want guidance how to design or process it . confusing my side.... [ATTACH]23166[/ATTACH] any …

Member Avatar for mlesniak
0
86
Member Avatar for swissknife007

[CODE] <?php require('class.phpmailer.php'); $mail=new PHPMailer(); $mail->isSMTP(); $mail->SMTPDebug=1; $mail->SMTPAuth=true; $mail->Port=465; $mail->Host="ssl//smtp.gmail.com"; $mail->Host = "ssl://smtp.gmail.com"; if(isset($_GET['submit'])) { $mail->Username=check($_GET['UserName'],"user id required"); if(filter_var($_GET['UserName'],FILTER_VALIDATE_EMAIL)==false) { show_error("Invalid email address"); } $mail->Username=$_GET['UserName']; $mail->Password=check($_GET['pass'],"password required"); $con=check($_GET['conpass'],"confirm password required"); if($con!=$mail->Password) show_error("Passwords do not match"); $mail->FromName=check($_GET['name']); $_GET['rec']=check($_GET['rec'],"recipient required"); if(filter_var($_GET['rec'],FILTER_VALIDATE_EMAIL)==false) { show_error("Invalid email address"); } $_GET['recn']=check($_GET['recn']); $mail->AddAddress($_GET['rec'],$_GET['recn']); $mail->Subject=$_GET['sub']; $mail->Body =$_GET['body']; if …

Member Avatar for diafol
0
345
Member Avatar for wisedave

Hello, I am looking for a way to use 'voice' in my email. We use Outlook 2010 if that helps. Instead of typing out a long email, I would like to 'say' it, then attach it to an email. Another route would be to record what I have to say …

Member Avatar for rch1231
0
222
Member Avatar for kamilacbe

Hi , Am developing a Windows application in which one module has to send a report to customers a mail.. the Question is I use net.mail namespace in c# and here comes the code . [CODE] try { SmtpClient smtp = new SmtpClient(); MailMessage msg = new MailMessage(); smtp.Credentials = …

Member Avatar for thines01
0
142
Member Avatar for swissknife007

[CODE] <?php //email(to,subject,message,headers,parameters) $to="swissknife@gmail.com>"; $subject="Hi"; $message="Hello my friend"; $from="swissknife007@gmail.com"; $headers="from:".$from; mail($to,$subject,$message,$headers); echo" mail sent"; ?>[/CODE] This is a very simple php script to send an email. However ,it is not working for me and I am getting the error. [CODE] Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" …

Member Avatar for pro_learner
0
258
Member Avatar for swissknife007

I have been trying to send email for 2 days. using php I have tried different methods but to no avail . I am sure I am making some small mistake. Please can someone give step by step procedure of sending mail using Xampp?

Member Avatar for pritaeas
0
227
Member Avatar for ggeoff

Hi I do not know whether Outook, in this case 2007 running under Vista Home Premium, is the cause of this message. Email has worked, but now displays a Enter Network Password pop up. I would like to know whether this is a Microsoft Windows issue or one due to …

Member Avatar for ggeoff
0
294
Member Avatar for thines01

Here is a technique I use for sending an email using GMail. Notice: You might need to change your email settings under [B]Forwarding and POP/IMAP[/B] inside your GMail settings (to Enable POP). Here is a test program for using the class library (shown in the snippet box): [CODE] using System; …

0
717
Member Avatar for manhthaodn

I'm building a C # application on Visual.NET. Now, After packing program to deployment. When users use the program, if have internet connection, the program will automatically send mail notification to me. To do that I do like? Thanks!

Member Avatar for manhthaodn
0
468
Member Avatar for daniel36

I am working on a project in which i need to send emails after 3 days of adding projects .is it possible using php?

Member Avatar for s0bigg
0
444
Member Avatar for Giggaman

Trying to set-up a simple email script. Every customer must have a login with an email address. If a potential client wants to email that user, I don't want their email posted where others can see it. So my question is how to I query an email address from the …

Member Avatar for diafol
0
66
Member Avatar for stereoworld

Hi Guys, Hope you can help me with this little conundrum I'm having currently. My company has a dedicated windows server with heart internet and for means of database interaction, we've been forced to move one of our php sites to there. Everythings great and works fine - except the …

Member Avatar for stereoworld
0
1K
Member Avatar for glenak

Hi all, I'm working on a system that does a bunch of stuff, as well as monitors the current date on a system, checks it against a stored date in a database, and if both dates are exactly the same, sends an email automatically to a bunch of users. Now, …

Member Avatar for NormR1
0
104
Member Avatar for phorce

Hello, I'm developing a system that emails people like a week before a particular date.. But they don't actually have to visit the page to receive the email, is this possible? Thanks :)

Member Avatar for pritaeas
0
82

The End.