6 Solved Topics

Remove Filter
Member Avatar for
Member Avatar for hometownnerd

Good afternoon. I am developing a gmail app for my personal consumption for now and it has a lot of bells and whistles including showing me the latest emails coming in, playing a sound and changing icon when there is new mail and a few other things. I am using …

Member Avatar for hometownnerd
0
2K
Member Avatar for PerplexedB

In VB.net this works: client.Host = "smtp.gMAIL.com" client.Credentials = New System.Net.NetworkCredential("b040Mail2@gmail.com", "*****") client.Port = 587 client.EnableSsl = True I'm trying this in php (from Xampp) but it gives me an error: ini_set("SMTP","ssl://smtp.gmail.com"); ini_set("smtp_port","587"); ini_set("username","b040Mail2@gmail.com"); ini_set("password","*****"); $to = "p806Antwerp@gmail.com"; $subject = "testing"; $message = "This is the message"; mail($to,$subject,$message). Is there …

Member Avatar for PerplexedB
0
560
Member Avatar for shahai.ali

hi i made a search but couldn't find a satisfied answer. any ways let me ask the question. as there are many freinds on facebook, twitter at social sites. and many other at gmail, yahoo and hotmail etc. now what i want is how to invite all the friends or …

Member Avatar for AndreRet
0
289
Member Avatar for arishy

From the script below, the commented part of the script is to prevent the script from hanging. The script as is , is working once I uncomment the openning of the file to retieve the body of the email, the script hang. use Email::Send; use Email::Send::Gmail; use Email::Simple::Creator; # open …

Member Avatar for arishy
0
328
Member Avatar for papanyquiL

Hi, here's the site I'm currently working on: [code]http://www.johnernaut.com[/code] Under the 'contact' tab I have some behind the scenes C# code that SHOULD send me an email whenever the submit button is pressed and all fields are validated. This isn't working for some reason. The host I'm using is GoDaddy. …

Member Avatar for aspproject
0
682
Member Avatar for nsutton

I followed a tutuorial to send gmails through a C# app. Im making a console app and this code fails I have no idea whats wrong... [CODE]class MainClass { public static void Main (string[] args) { sendMail mailSend = new sendMail(); mailSend.mail("stmp.gmail.com",465,"sendersemail@gmail.com","senders password","fromadress@gmail.com","toadress@gmail.com","Subject","Body",true); } }[/CODE] [CODE] public class sendMail { …

Member Avatar for nsutton
0
160

The End.