This is not a homework assignment, I am trying to create a program I could use at work to make my job a little easier. I need to send a number of email in a day to one address. so I would like to create a form that I could just make a few clicks then hit send and I can go on with my day. I was able to do this in vb6 easy enough. but I can't get past the authentication error in vb2008.[code]...
The problem is if I send more than one email to myself my email address keeps repeating itself in the "To" box. If I send an email to myself 3 times, the 3rd e-mails "To" box will say:
I've got the below code which will send me an email of error details when dealing with customers. The problem is the email only seems to successfully send from certain ISP's. Could it be that even though the correct authenication details have been eneterd that certain ISP's are blocking port 25?
can i do that? if i have a combobox that have (ex. 10 email addresses) and a text box to write a subject and a button to send email to a specific value from the combobox with the subject can i do this?
I'm using this code to send an email via smtp in VB 2008:
Dim smtp As SmtpClient = New SmtpClient("mail.mydomain.org") Dim SMTPUserInfo As NetworkCredential = New NetworkCredential("notifications@mydomain.org", "mypassword")
[Code]....
This has had me stumped for the last week, but I think I got a little closer to atleast identifying the problem when I took it home. Ok, the code above doesn't work when I'm at work for some reason. The exception message is: "Unable to connect to the remote server. ". Seems odd because I am simply using the internet to connect to my smtp server to send an email. When I'm at home, this works just fine.
what is stopping it from going through when I'm at work? If I atleast know that, I may be able to tell our network guys what it is so they can allow it to get out.
Anyone knows one module or example in Visual Basic Express 2008 to send one email by using Hotmail Acount ? I see you have a lot of examples here but i cant see one example to send email by using hotmail account with visual 2008?
I have designed an application. I want the user to send the attachment back to my gmail account. Does it matter which account they use inorder to send it back? I have seen lots of code from sending from a gmail account. I statrted to look at the below code THEN realised users will hae various accounts.
Private Sub Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Email.Click Dim mail As New MailMessage() Dim att = New Attachment("J:\vb\RizRandom\RizRandom\Results\UBM.xlsx")
I'm using a smtp send email function from microsoft.com but idk how to send same email to 2 people at once.. This is piece of
Dim MyMailMessage As New MailMessage() MyMailMessage.From = New MailAddress("test@vb.com") 'From E-mail MyMailMessage.To.Add("ne0@live.com") 'Send to E-mail MyMailMessage.Subject = ("test") 'Subject MyMailMessage.Body = "a"
I have an asp website. one page displays upcoming events for the next 7 days. I get the event information from a mysql database. Now I need to send out an email in vb.net of that asp page. What's the best way to do this. I send emails with another program of mine and I biuld the html string using a stringbuilder
A Form on visual basics express, with one button (button1)
- One Textbox (Textbox1)
-. No Imports.
What I need -
- Click that button1, and the message in Textbox 1, is sent to [url].....I've copied tons of code from the forums that come up with error messages, most likely have the wrong imports, so please in your reply, state the imports I need,then the codes, for VB 2008 Express.
Dim Email, Cuerpo, NombreCompleto, Correo, Titulo As String Dim emailMessage As New System.Text.StringBuilder Email = ListView1.SelectedItems.Item(0).SubItems(4).Text
[Code].....
the problem its .. when i run the code in the body of the outlook cant insert NEW ROW , i used vbcr , chr(10) etc etc etc .. :S
so my friend and i are working on a project together, he is working on PHP, and im working on visual basic, and we both know what we need to do, but we cant figure out how to use his PHP code and use it in visual basic. What we're doing right now is trying to make a program to send an email to me or him when somebody presses a button. so, how would i use his PHP to send an email from my VB based app? sorry if this is in the wrong place, i wasn't quite sure which to put it in...
I've got an app that manages estimates on jobs. When an estimate is loaded an e-mail has to go out to a list of people (different list for each job) that they should log in and approve the estimate. Least visible to the user making the estimate. Our should I research SQL mail and see if the sql box can handle it without the app user even knowing it?
I am sending an email with an attachment using the following Code
Dim msg As New System.Net.Mail.MailMessage(req.EmailFrom, req.EmailTo) Dim att As New System.Net.Mail.Attachment("C:Documents and SettingsmichaelrDesktop1216259.pdf") With msg .Attachments.Add(att)
[code]....
The file size of the attachment is 396KB, upon the recipient receiving the email outlook shows the file size as 543Kb. Strange thing is if I send an email with the same attachment using outlook the file size is 396Kb.I understand that file sizes can increase due to the attachment being base 64 encoded as opposed to just raw binary.What I am failing to see is why outlook send a file which is 396KB in size but in code when sending it, the same file is 543Kb.
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.)?
I'm trying to get my program to send very simple text email messages. I did do a search beforehand, and found that I was having the same issue as someone else, but the specific question I have was not answered --
I've learned that if you're trying to send mail, you need an SMTP server... I found this list here but every one of them I've tried yields the same "Failure sending mail" error.
Here's my
Dim mail As New MailMessage()
mail.From = New MailAddress("me@mycompany.com") mail.To.Add("destination-email@whatever.com")
[CODE]...
Is the problem that I need to show "credentials" (i.e. user/pass)? If so, what would those credentials be? Can I use my yahoo email SMTP server with my login info to do it? And is this all I'd need to add to add the credentials?
smtp.Credentials = New NetworkCredential("MyUsername", "MyPassword") (before the smtp.Send, of course)
I have been able to find out how to send an email using smtp with an image as an attachment, but the problem with this, is that, as a txt message, it comes up as something like [Attachment removed] or something. I need to be able to send my cell phone a picture message, not just an attachment. [Code]
I'm making an application in which clients can send an SMTP email. In this application a client must select their internet provider, this possibilty already works. While testing it I tried to deactivate the SMTP.Credentials in which a username and password must be entered. Deactivating/romoving this line has no effect on sending the emails.?. I tested it on my office and at home, with 2 different providers. All mails were send.
My question: Is SMTP.Credentials required to send an email or not? What effects can deleting this line have?
I wouuld like to open outlook with new email with provided subject line, body message and attachment but no email address. User will enter the email address and click send . How can I do this?
I used following code but it gives me error for to address
i can send email through vb.net behind code but how do i implement so that the recipient cannot see the sender email and only the name?i had done alot of research but i can't find any solution about this problem
I am currently trying to send Email but am stuck with the GeneralFailure error caught with try and catch. I got the sample code somewhere off the internet last week and modified it when I have the chance.
The following is the code I am working on for now.
Private Sub btnSend_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSend.Click Dim message As System.Net.Mail.MailMessage Dim mailClient As New System.Net.Mail.SmtpClient("smtp.live.com", 25)
[CODE]...
Is there anything unnecessary, missing or am I on the wrong track? Right now I am trying to test send a mail from hotmail to gmail or another live account. Also, I have tried searching through the internet for a solution and some said I need to have IIS which I had it installed for it to work. Another said I need to add a reference but did not specify it. Those were pretty old messages though.
Are there any good books out there that will show someone how to set up a form using Visual basic that will take information and send it to the server and then send a recipient an Email?