Using A Web Browser To Send A Gmail Message And Have A Home Pc Return A Email In Response

Apr 6, 2012

ok here is my problem, im making a little app for school since our school blocks pretty much everything so here is my plan a student makes 2 gmail accounts one for school one at home.

in the program at school (client) they put a site request into a textbox and they hit send, the request is then sent to the home pc gmail account and another app on the other side downloads the full site that they have requested and then sends them an email back with an attachment of the complete website, it is then opened in a browser and they have the site, simple idea and it would be easy except.

my school blocks the smtp protocols in vb, even outlook cant use gmail accounts only the schools registered email, however, you can access gmail on the internet without any blockages and you can send and recieve on the gmail website.so how can i use a webbrowser control to log the user into there gmail account through a custom gui, and send a string like www.facebook.com to the home pc gmail account, and then use the web browser controll on the students laptop to recieve the response email through a web browser, is there some kind of gmail api i can use?

View 3 Replies


ADVERTISEMENT

Asp.net Won't Send Email Using Gmail

Mar 30, 2012

why this wont send...ive checked email address and password numerous times...

Imports System.Net.Mail
Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim Mail As New MailMessage
Mail.From = New MailAddress("myemail@googlemail.com")

[code]...

View 3 Replies

Send Email Via Gmail Starttls?

Feb 27, 2010

im trying to make my program send an email from my googlemail account and it come up with and error message saying starttls command?

Imports System.Net.Mail
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
Dim SmtpServer As New SmtpClient()

[code]....

View 6 Replies

Code To Send Email Via Gmail Account?

Mar 30, 2011

following code to send E-mail via G-mail account.Recently, I've decided to use a Hotmail account.Every time I use it it gives me an error.

Here is the code:

Dim zippath As String = "C:DANMAKLEN - Thursday [31-3-2011] at [0.14].zip"
Try
Dim mail As New MailMessage()

[code]....

View 8 Replies

Uses A Email Account At Gmail To Send A Text?

Mar 25, 2010

Im making a program that uses a Email account at Gmail to send a Text Msg to a Cell Phone Number. Here is part of the code used for every single carrier ElseIf ComboBox1.SelectedItem = "US Cellular" Then

[Code]...

What I want to do now. Is I made another ComboBox and I want to have a list of 4 More DIFFERNET Emails I make. "Server1" "Server2" "Server3" "Server4" will be IN the ComboBox but when someone changes Server's it changes Emails just in case one of them is not working at the time, Understand? How can this be done?

View 2 Replies

VS 2008 Send Email With Attachements To Gmail?

Aug 31, 2010

Can someone give a vb.net sample code to send emails with attachaments to a gmail account?

View 6 Replies

Send Email Using Gmail.smtp Over A Proxy Server?

Feb 9, 2012

i am working on a my project, which send email to me using gmail.smtp, it works fine on xp, vista, and + some of windows 7 versions, in few pc's i had tried that, and got a issue.here is detail of error i got in there, i am using visual studio 2008 & a internet with proxy server,n my openion its a problem with internet ? maybe ? because when i had used this on my dsl connection it worked.

View 7 Replies

DB/Reporting :: Hard-coded Email Message Send To Email Recipients?

Jul 6, 2008

how would i implement a way that i would not hard code the email message that the application send to email recipients? how will i also include email message formatting (text in bold, italic, etc.)?

View 2 Replies

Send A Dynamic Message Email?

Jul 13, 2011

I'm writing a program that will scan a barcode from a serial scanner and store the information in a MySQL database.

In the program I would like to check for when the scanner is not working. If it's not working then send me an email. I set a variable called MessageBody which sets the body of the email that is going to be sent. The subroutine is called EmailError(). So I can call it in other subroutines. I would like to take a variable or something and put it in the Message body so I can have a dynamic message body and not a static boring one.

View 1 Replies

Unable To Send The Email Message?

Aug 6, 2009

Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
If MessageBox.Show("YOU'RE ABOUT TO SAVE A BID. DO YOU WANT TO CONTINUE?", "G.M.S. | CONFIRM BID", MessageBoxButtons.YesNo) = Windows.Forms.DialogResult.Yes Then
MainScreen.lblMessage.Visible = True
lblMessage.Visible = True

[code]....

When I did this on my lap top it was working fine, when I put this project on my work PC it won't send the message.

View 5 Replies

Use SMTPClient To Send An Email Message?

Aug 3, 2010

This is my first time trying to create a windows application that can be used to send an email message. It's a new requirement that we have to satisfy. Our customer information is saved in a database and we needed to send them some advertisement messages to some or all of them.

I created a windows application but unfortunately I couldn't send a single email message.

I tried to modify my code several times with no luck; each time I'm getting a different exception message. I tried to search the wen for more information regarding this issue but I end up with the same result.

I don't know if I must have an smtp server to relay the messages and be able to send them. If this is the case how I can do that? Is it possible to accomplish this with something else.

Dim Message As MailMessage = New MailMessage()
Dim Smtp As New SmtpClient()
Dim SmtpUser As New System.Net.NetworkCredential()

[Code]....

View 1 Replies

Use The Same Email To Send The Message Every Time?

Apr 8, 2009

I have spent at least 6 hours trying to write a program that will send emails to a constant list of email addresses. I was trying to make it so all that I need to type is the subject, body, and "nickname". I wanted to use the same email to send the message every time (yahoo or gmail address), and the recipients to be a constant list of emails.

View 3 Replies

Create An Application To Send An Email As A Sms Text Message To The Recipient?

Jun 22, 2009

create an application to send an email as a sms text message to the recipient?

View 1 Replies

EmailMessage Class To Send Email Message(s) From Local Computer

May 18, 2009

I am using the EmailMessage to send email message(s) from my local computer. I am also using the SMTP server of my ISP and generally it works just fine. However, some of the emails are never delivered to the destination (bouncing emails) and i get "Mail Delivery failed: returning message to sender" How do i check if the message can be delivered rather than receive the "returning message to sender"? Should i check the destination email server? I have no idea from where to start actually.

View 6 Replies

Send Multiple Email From Contacts With Variable In Message Body?

Feb 18, 2010

We have an excel spreadsheet with about 10000 names (company and email address) and we need to send some legal docs to them. I'm looking for a way to automate this either via a macro in excel or templates in outlook.Problem with macro in excel is that the code I was able to findcustomize doesn't let me insert a formatted text in the message body.[code]...

View 2 Replies

VS 2010 Email Auto-responder - Open New Email On Gmail?

Oct 12, 2011

I am development a small app for auto response all new emails with custom responses. My problem is that I don't know how open the email (make click on the subject link) on gmail. I am using web browser control, so I need to know how make click on the email titles for open each emails.

View 3 Replies

Smtp.send Failure Sending Email Message From Client Machine?

May 13, 2011

Mail.From = New Net.Mail.MailAddress(test@gmail.com)
Mail.To.Add("exc@gmail.com")
Mail.Subject = "Test"

[code]....

View 1 Replies

Create Interactive Voice Response Systems From Home?

May 7, 2009

I am trying to build an IVR and hook it up to my website, what are the different (inexpensive) ways that I can do it.

View 10 Replies

GetWindowsDirectory Does Not Return User's Home Directory In TS?

Oct 14, 2009

We have a desktop application that is under maintenance,developed using VB.Net 2005. There are couple of installations for this app. One of the users is using TS. We use the API GetWindowsDirectory that returns the user's home directory where we place .ini file. And this worked well.Recently, we modifed few vb.net forms. But the code related to looking for .ini file was not touched. When we compiled the app and sent the update to the client, the user now reports that under TS,the app is looking for .ini file shared windows i.e. C:windows rather than the user's home directory. What can go wrong? Why is GetWindowsDirectory not returning me the user's home directory?

View 2 Replies

Gmail Email Retriever?

Dec 30, 2011

I have tried to write a program to get emails from my gmail account but no luck. Can you provide me with some code get all my emails from my account or a single one.

View 2 Replies

Sending An Email Using Gmail

Jul 26, 2009

I have a problem sending an email using gmail.. the code I use is the following :

[Code]...

View 5 Replies

Sending Email With Gmail?

Jun 4, 2009

Can't connect to server is what I get out of this: Public Sub SendEmail()

Dim client As New SmtpClient()
Dim sendTo As MailAddress = New MailAddress(TextBox1.Text)
Dim from As MailAddress = New MailAddress(User(SendFrom) & "@gmail.com")
Dim message As New MailMessage(from, sendTo)

[Code]...

View 6 Replies

Make A Web Browser That Uses Home Internet Connection From Anywhere

May 22, 2009

I need to make a web browser that uses my home internet connection from anywhere.I plan to have the web browser connect to my router/computer where it will request the desired web pages and have the page data sent back to the browser client. The browser must only have a connection with my IP, and not request the web pages from their web URL.How can i do this and what will i need to set up on my home computer?

View 5 Replies

VS 2010 Setting Web Browser Home Page

Jan 7, 2011

I'm working on a web browser application and I'm trying to set up the home page to be decided with a textbox in the settings form. I want it so that if there is text in the textbox it pulls the url from it and goes to it every time the application is opened.I doubt this is even close to anything that would actually work but I like to show that I put the effort in.[code]

View 2 Replies

C# - Sending Email Through Gmail Using SMTP

Jan 6, 2011

I am trying to send an email through following code

CODE

Dim MyMailMessage As New MailMessage()
'From requires an instance of the MailAddress type
MyMailMessage.From = New MailAddress("a@gmail.com")

[Code]....

NOTE : I have tried SMTPServer.Port = 587 too but still its not working

View 1 Replies

Sending Email Using Gmail Account?

Sep 1, 2010

Why does this timeout?

Dim s As New SmtpClient
s.Host = "smtp.gmail.com"
s.Port = 465

[code].....

View 1 Replies

Sending Gmail Email With DIm Credentials

May 31, 2012

So i have a gmail email sender and when i change the credential username and password to variables it says over load resolution is there a way to fix this

SMTP.Credentials = New System.Net.NetworkCredential(useraa, passaa)
but if i use a textbox.text it does work.

View 1 Replies

Read A Inbox From A Email Service Like Gmail?

Apr 23, 2010

how to read a inbox from a email service like Gmail.

View 2 Replies

Sending Email With Embed Image (Gmail)?

Jun 27, 2012

I am trying to send an email with image in VB.NET, but it keeps giving this error:Command not implemented. The server response was: 5.5.1 Unrecognized command. v16sm160510122eem.17or if we check the error in visual studio itselfCommand not implemented. The server response was: 5.5.1 Unrecognized command. p41sm162075833eef.5I am using this code:

Imports System.Net.Mail
Public Class mail
Public Sub sendMail(sender As String, password As String, receiver As String, content As

[code]......

View 10 Replies

VB: Sending Email ( Gmail ) Using SMTP Error?

Jan 15, 2012

I'm trying to send emails using smtp and getting an error This is my code :

Imports System.Net.Mail
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

[code].....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved