Sponsored by
www.aspnetemail.com
|
 |
Discuss This FAQ Item
Got a question? Another Suggestion? Want to post your solution? Discuss it below.
-
smtpserver
[ Reply ]
please give me a few samples with valid smtpserver, not "localhost" thanks a lot.
mehdi [ m_a_sps ( at ) yahoo dot com ],
2004-02-09 12:39:25
#
-
RE: smtpserver
[ Reply ]
umm...
SmtpMail.SmtpServer = "mail.mycompany.com"
dave [ dave ( at ) 123aspx dot com ],
2004-02-09 13:14:37
#
-
RE: smtpserver
[ Reply ]
test
test [ test ( at ) test dot com ],
2007-09-07 05:30:30
#
-
RE: smtpserver
[ Reply ]
test
test [ test ( at ) test dot com ],
2007-09-07 05:31:07
#
-
RE: smtpserver
[ Reply ]
test
test [ test ( at ) test dot com ],
2007-09-07 05:31:54
#
-
RE: smtpserver
[ Reply ]
test
test [ test ( at ) test dot com ],
2007-09-07 05:34:57
#
-
RE: smtpserver
[ Reply ]
test
test [ test ( at ) test dot com ],
2007-09-07 05:35:27
#
-
RE: smtpserver
[ Reply ]
test
test [ test ( at ) test dot com ],
2007-09-07 05:37:03
#
-
RE: smtpserver
[ Reply ]
test
test [ test ( at ) test dot com ],
2007-09-07 05:38:15
#
-
RE: smtpserver
[ Reply ]
this is a test
test [ test ( at ) test dot com ],
2007-09-07 05:55:55
#
-
RE: smtpserver
[ Reply ]
this is a test
test [ test ( at ) test dot com ],
2007-09-07 06:14:37
#
-
How can I know whether the sent email is really received by the receiver or not?
[ Reply ]
How can I know whether the sent email is really received by the receiver or not? If the "to address" doesn't exist any more, "System.web.mail" doesn't throw any exception. In this case, how can I know the receiving result of the email?
Mucshan [ guan dot li ( at ) tsss dot com dot cn ],
2004-04-25 20:58:23
#
-
RE: How can I know whether the sent email is really received by the receiver or not?
[ Reply ]
The bottom line is there is no way of knowing for sure, if your email got through.
The closest thing you can do is: 1) Add a image to HTML email, and if they can view the image in HTML, AND they are connected to the internet, AND the have images enabled in their email AND you can check to see if a request was made to the image AND the request is unique to their email, then you know the email was read.
or
2) You can request a read receipt. However, many people have them turned off. If you do get a read receipt back, you know it was read.
hth, Dave
dave wanta [ dave ( at ) 123aspx dot com ],
2004-04-26 10:06:43
#
-
RE: How can I know whether the sent email is really received by the receiver or not?
[ Reply ]
Yes , U can check whether the reveiver received ur mail or not using the following way
Tips
1. You can contact to him through telephone
2.Otherwise u must have to know about their Email id and Password
Note: have u this code then Please send it ,I am also searching
Thaks Bala
bala [ bala ( at ) hotmail dot cjom ],
2006-05-26 00:20:18
#
-
RE: How can I know whether the sent email is really received by the receiver or not?
[ Reply ]
You have to set the "Return-Path" and "Errors-To" headers to a valid email address. If the SMTP server is unable to send the mail for some reason, it will be redirected to these addresses. You can POP it and do anything else that you want to do with it.
Jay Shanker [ Jaysh ( at ) gmx dot net ],
2006-07-17 21:33:58
#
-
RE: How can I know whether the sent email is really received by the receiver or not?
[ Reply ]
Maybe you can hava two E_mail Address......
zongquanliu [ zongquanliu ( at ) 126 dot com ],
2007-08-18 12:02:29
#
-
BCC and read receipt
[ Reply ]
Dave, thanks for all these information. I am just wondering how to implement the read receipt in SWM.
Thanks!
Jason
Jason Zhou [ jzhou3000 ( at ) yahoo dot com ],
2004-05-14 14:22:23
#
-
RE: BCC and read receipt
[ Reply ]
Hi dave,
I read your mail that you were thinking about implementing read receipt.
I am also planning to implement the read receipt did you find any information regarding it.
you can mail me at chintan@eninteractive.com
regards, Chintan
chintan [ chintan ( at ) eninteractive dot com ],
2005-06-25 03:26:39
#
-
body of email
[ Reply ]
I need to send information from 4 textboxes in an email to someone. How do I set all 4 textboxes equal to the body of my email? I am using C#.Net.
Thanks, Brian
Brian [ judgete87 ( at ) comcast dot net ],
2004-08-11 07:35:20
#
-
RE: body of email
[ Reply ]
u can pass directly For example
string a = TextBox1.Text; MailMessage mail = new MailMessage(); mail.To = "me@companyname.com"; mail.From = "you@companyname.com"; mail.Subject = "this is a test email."; mail.Body = a; SmtpMail.SmtpServer = "your sever name";//""; //your real server goes here SmtpMail.Send(mail);
i hope this will help u
c# [ c ( at ) zapakmail dot com ],
2007-10-12 23:54:25
#
-
Content-Transfer-Encoding ?
[ Reply ]
While Sending Email how do I choose the Content-Transfer-Encoding for my Email ?
ie.) In what scenario i can use 7bit, 8bit, base64, quoted-printable, etc...
Karthikeyan [ nvkar_in ( at ) yahoo dot com ],
2004-09-09 23:11:42
#
-
receiving mails
[ Reply ]
Hi How do i receive mails, say i've a mail client like outlook or outlook express. can i read mails from the mail clients or is there a way of reading mails from the server directly, all examples seems to be about sending mails please help
Pradeep [ p_kandoth ( at ) hotmail dot com ],
2004-09-10 13:17:34
#
-
RE: receiving mails
[ Reply ]
you will need to either write your own POP3 or IMAP component, or else use something like http://www.aspNetPOP3.com or http://www.aspNetIMAP.com
if you are looking to write your own component, search codeproject.com. I think there ae some code samples there. Also, check http://www.123aspx.com under Tutorials | Email for some links.
hth, Dave
dave wanta [ dave ( at ) 123aspx dot com ],
2004-09-10 13:39:38
#
-
RE: receiving mails
[ Reply ]
Using Tcp Program and the php i received the information from the Mail server directly
using C# Here i give you some coe to open the mail server and search for the new mails
// Send the following string to //server using port 143 // You Will Get the Response
if(SendToServer("? LOGIN " + oForm2.UserName + " " + oForm2.Password +CRLF,"? NO")!="") { if(SendToServer("? Select Inbox"+CRLF,"? NO")!="") { // PHP Command to search for the new mails string Response = SendToServer("? SEARCH NEW"+CRLF," "); } }
Try the above code and response me with you SMTP Server
I have the full code just like a mail client, sorry i didn't give the full source.
Thanks, Mahendran.G
Mahendran [ g_mahendran_btech ( at ) yahoo dot co dot in ],
2004-11-07 23:16:57
#
-
RE: receiving mails
[ Reply ]
Check out Indy.Sockets . It is an OpenSource implementation of the famous Indy sockets library. It has a full-featured POP3 class that you can use to retrieve emails - Jay Shanker
Jay Shanker [ Jaysh ( at ) gmx dot net ],
2006-07-17 21:32:37
#
-
How do I add a TNEF stream to an email header?
[ Reply ]
Hi,
I'm using TNEF to enable custom forms in an Exchange client. How do I add the TNEF stream to the header of a SmtpMail email?
Thanks.
Chris Hearson [ chris dot hearson ( at ) teleware dot co dot uk ],
2004-11-05 04:08:39
#
-
Send Folder
[ Reply ]
if I send a mail using System.Web.Mail, Can I send a copy the my mail, in the Send Folder?
Rumor [ lmad100 ( at ) hotmail dot com ],
2004-11-12 02:59:37
#
-
RE: Send Folder
[ Reply ]
Maintaining a copy of the sent emails in the "Sent Items" is not part of the SMTP protocol. It is managed by the email client. So, you have to do it yourself.
Jay Shanker [ jays ( at ) tiersolution dot com ],
2006-07-17 21:26:36
#
-
At what point is the message mailed
[ Reply ]
I have a question regarding whether or not System.Web.Mail.SmtpMail.Send(objMail) actually sends the mail OR if it sends a request to the server/places the message in a queue of some sort. Does the call to System.Web.Mail.SmtpMail.Send(objMail) ACTUALLY send the mail or just place it in some sort of queue.
Also, how does one know if the message was bounced back? If there is no way of really knowing this info, then how are statistics generated? Lots of questionable assumptions?
Thanks,
Brad
Bradley Loveall [ bloveall ( at ) indiana dot edu ],
2004-11-12 14:07:38
#
-
RE: At what point is the message mailed
[ Reply ]
Hi, I also want to know what happens to the message when it is 'sent'. I'm not sending the email or catching any exceptions. Does the user need to have the IIS smtp service running for this to work ? or is setting the fields with the correct mail server good enough ? It looks like I need the a local smtp server for me to send an email :-| Even if I setup all the username/password/Hostname fields (when not running a local smtp server) it just does nothing...
Reyn Vlietstra [ reynvliet ( at ) webmail dot co dot za ],
2005-02-22 03:47:07
#
-
How do I add voting buttons to a mail?
[ Reply ]
Hi
In my sample application I am sending a mail to user through MailMessage class. Now I want to give user an option to vote ("Approve/Reject") through voting buttons as in MS outlook client.
Can you please let me if this is Outlook client feature or can it be embedded part of MailMessage? If it can be part of MailMessage can you give me an example for this please?
Thanks!
Regards Kiran
Kiran Kumar Dodda [ kiran dot dodda ( at ) ubinetics dot co dot in ],
2005-01-13 03:29:00
#
-
RE: How do I add voting buttons to a mail?
[ Reply ]
hi.. me too.. also doing the same thing in my project... when A send me email by using outlook.... how can i add those button inside outlook? anyone there have any idea?do send me email to help !!! thanks..
jasonlimwk@gmail.com
jason [ jasonlimwk ( at ) gmail dot com ],
2005-06-19 17:50:18
#
-
implementation of dial out feature of Outlook in c#
[ Reply ]
Hi,
I am developing Softphone application in c#. My query is realted to microsoft outlook. Outlook conatain "call now"/ "Dial out" feature in Address. Click on this button, it will make a call to respective person using phone dialer. I wanted to implement like, whenever user/client press this button, it should open my application instead of process the call using phone dialer. I can i do that? Pls help me in this regard. Also send mail me to "nagendra.gunaga@blr.corpus.com". Your replay is highly appriciated.
Thanks, Nagendra Gunaga
Nagendra [ nagendra dot gunaga ( at ) blr dot corpus dot com ],
2005-03-02 23:13:17
#
-
Why email from ASP.NET is different from Outlook email
[ Reply ]
How do you make email sent from ASP.NET (that uses System.Web.dll) to have the same header as email sent from Outlook?
The reason I am asking is I am experiencing a problem where email sent from Outlook to a text pager gets delivered without a problem. But the email sent from ASP.NET page shows in the text pager with the some header information.
I would appreciate any suggestions. Thank you.
Dmitry [ dima47 ( at ) mindspring dot com ],
2005-03-14 07:40:38
#
-
How to check on delivery failure
[ Reply ]
How do we check if a message is delivered properly. Is their a way to handle timeout and check if a user id really exists. Please help me out with this.
Thank You.
sirish [ sirishreddi ( at ) gmail dot com ],
2005-03-24 21:13:39
#
-
RE: How to check on delivery failure
[ Reply ]
You have to set the "Return-Path" and "Errors-To" headers to a valid email address. If the SMTP server is unable to send the mail for some reason, it will be redirected to these addresses. You can POP it and do anything else that you want to do with it.
Jay Shanker [ jays ( at ) tiersolution dot com ],
2006-07-17 21:29:37
#
-
Email
[ Reply ]
How can i hide the IP NUMBER /Machine name ,From address when sending mail using c# application.
rasmi [ rasmi_g ( at ) erdcitvm dot org ],
2005-04-08 03:22:15
#
-
RE: Email
[ Reply ]
Hi, Why would you want to do this?
steve [ steve ( at ) james dot com ],
2005-04-08 04:36:36
#
-
RE: Email
[ Reply ]
Only spammers would want to do this. Surely, your motives are anything but. :-)
Jay Shanker [ jays ( at ) tiersolution dot com ],
2006-07-17 21:09:29
#
-
Get the client e-mail address
[ Reply ]
Hi,
How can I get the client E-mail address in an asp.net page for using in msg.From property of the MailMessage.
thanks
David
David [ davide ( at ) mops dot gov dot il ],
2005-05-16 23:12:37
#
-
RE: Get the client e-mail address
[ Reply ]
msg.From.DisplayName and msg.From.Address will get you the friendly name and the email address - Jay Shanker
Jay Shanker [ jays ( at ) tiersolution dot com ],
2006-07-17 21:11:44
#
-
SMTP mail
[ Reply ]
how can i check whether the SMTP has send the mail successfully. is there any exception thrown when the mail is not sent? please help me out with this
nihal silva [ sna_silva ( at ) yahoo dot com ],
2005-05-30 23:22:07
#
-
RE: SMTP mail
[ Reply ]
You have to set the "Return-Path" and "Errors-To" headers to a valid email address. If the SMTP server is unable to send the mail for some reason, it will be redirected to these addresses. You can POP it and do anything else that you want to do with it.
Jay Shanker [ jays ( at ) tiersolution dot com ],
2006-07-17 21:28:29
#
-
how to send data in datagrid to email
[ Reply ]
how to send data in datagrid to email ?
jack [ shytree69 ( at ) hotmail dot com ],
2005-09-12 08:01:50
#
-
mails blocked in badmails of virtual directory
[ Reply ]
hi i designed asp.net page that send mails . but when i send the mail it is being blocked in my badmails of my virtualdirectory (mailroot) how should i correct it plz help me
urgent
DAYANIDHI [ dayanidhi_mca ( at ) yahoo dot co dot in ],
2005-10-02 23:33:42
#
-
i think it's a problem
[ Reply ]
i try using system.web.mail in the production enviroment... but it didn't work.. i try the xpsmtp dll and it didn't work..
i set up everything..... i just need some info.. to find the problem.... i setup SmtpMail.SmtpServer to a valid server (server to our office).. but it didn't work..... if the server requires a password before using smtpserver.. do i have to set it up if so.. can u tell how.....
note: our office is using exchange server.... those this thing relevant in setting up the mail...
Dante Salvador [ tengtium ( at ) gmail dot com ],
2005-10-31 05:23:51
#
-
Email from PDA
[ Reply ]
I am writing an application which sends an email through GPRS for an HP iPAQ.
When I run the exe file from my pc everything works fine and the email is sent, but when i try to run my application from the PDA it gives me the following error:
An unhandled exception of type 'System.TypeLoadException' occurred in myApp.exe
Additional information: Could not load type System.Security.IStackWalk from assembly mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=969DB8053D3322AC
I tried my applicatin both on WinXP and 2000 Professional and the email is sent, but not on PDA, any ideas / suggestions please ?
Martin Degiorgio [ md_stc ( at ) yahoo dot com ],
2005-12-08 04:41:20
#
-
Exception Details: System.Runtime.InteropServices.COMException: The transport failed to connect to the server.
[ Reply ]
I keep on getting this error..can you help please? Note:
mail.From= "\"MaathMusleh\"admin@mylist.com"; SmtpMail.SmtpServer = "//localhost/";
---these are the from and the server in my code
Maath [ maath dot musleh ( at ) gmail dot com ],
2006-04-17 05:33:08
#
-
cant send the mail
[ Reply ]
i keep getting an error System.Runtime.InteropServices.COMException: The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for maathm@yahoo.com
Maath [ maath dot musleh ( at ) gmail dot com ],
2006-04-17 06:12:12
#
-
RE: cant send the mail
[ Reply ]
My Error is
The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for vishalgaikwad_2006@yahoo.com
vishal Gaikwad [ vishal_gaik18 ( at ) rediffmail dot com ],
2009-06-24 06:43:42
#
-
Return Path
[ Reply ]
Hello,
Does system.web.mail allow you to set a return-path in an email. I would like to make sure that a bounced email returns to a specific email account.
If anyone knows how to set this up, I would appreciate it.
Dean
Dean Danis [ dean_danis ( at ) hotmail dot com ],
2006-04-28 10:32:15
#
-
RE: Return Path
[ Reply ]
Nope.
dave wanta [ dave ( at ) 123aspx dot com ],
2006-04-28 10:45:22
#
-
RE RE: Return Path
[ Reply ]
Just add a custom header into the Headers NameValueCollection with "Return-Path" as the element name - Jay Shanker
Jay Shanker [ jays ( at ) tiersolution dot com ],
2006-07-17 21:07:25
#
-
RE: RE RE: Return Path
[ Reply ]
I tried using the "Return-Path" header and it does not work.
I did some research and it looks like what really needs to happens is the FROM statement during the SMTP conversation needs to be FROM the email you want to bounce back to but the line also must include an AUTH which is the email of the account that the email should LOOK like it's from.
Anyone have any ideas?
Kevin [ kwarnke ( at ) videoc dot com ],
2007-10-26 12:54:48
#
-
Saving an e-mail
[ Reply ]
Hi, does anybody know how to save an e-mail before sending it (by using the SmtpMail.Send(MailMessage)) pls?
Thanks
John [ spvemm ( at ) hotmail dot com ],
2006-05-15 16:38:42
#
-
RE: Saving an e-mail
[ Reply ]
Just Serialize the MailMessage instance to a filestream.
Jay Shanker [ Jaysh ( at ) gmx dot net ],
2006-07-17 21:38:40
#
-
my mail program some times won't work
[ Reply ]
hi iam using system.web.mail. some times the mail program works fine but some times i get the error 'Could not access cdo.message object" help me plz..
Here is the code . i am using authentication also to sned message
MailMessage mmObj = new MailMessage();
//mmObj.To="vnkbabu@gmail.com"; mmObj.To=txttomailid.Text; //mmObj.From=
mmObj.Subject="Proposal From Handiman"; mmObj.Body="FDZGFDSSAD"; mmObj.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate",1 ); mmObj.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername",from_address ); mmObj.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword",password ); mmObj.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", portnum); //mmObj.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl", "true");
mmObj.BodyFormat = MailFormat.Html; mmObj.Priority=MailPriority.Normal;
//MailAttachment attach = new MailAttachment(path1); //mmObj.Attachments.Add(attach);
SmtpMail.SmtpServer=ConfigurationSettings.AppSettings["SMTPServer"]; SmtpMail.Send(mmObj);
venkateshbabu [ vnkbabu ( at ) yahoo dot com ],
2006-06-05 02:42:18
#
-
The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available
[ Reply ]
I keep on getting this error when i am sending the mail from localhost Note: msg.To="abc@abc.com"(valid emailid) msg.From="abd@abd.com"(valid email Id) System.Web.Mail.SmtpMail.SmtpServer = "localhost"; System.Web.Mail.SmtpMail.Send(msg);
vijaya [ ankamvijaya ( at ) rediffmail dot cim ],
2006-06-16 01:29:57
#
-
How to Convert .msg files to txt files
[ Reply ]
Hi, How can i convert outlook mails which have ".msg" extension to plain text files... in c#.net
if possible give me source code ..
Please help me !!!
Thanks in advance , Regards Nagendra Kumar
Nagendra [ nagendra ( at ) naturalseach dot co dot in ],
2006-07-25 23:06:59
#
-
error about program
[ Reply ]
i can not use smtp program in remote server?what is the problem?
shahab [ shahabworks ( at ) yahoo dot com ],
2006-07-29 08:09:55
#
-
how to read mail using indy.socket
[ Reply ]
h all , i am having problen while trying to read mail which has attachment . the message body i get is ' this is multi part of mime meesage" can any one pls help. and also i want to set message to read ...
thanks in advance sarish
sarish [ sarish_ks ( at ) yahoo dot co dot in ],
2006-08-15 22:42:40
#
-
how to read sent items through .net
[ Reply ]
hi can any tell me that how can i read the sent items using vb.net
actully i want to read the mail address to which the mail is sent and the subject and the subject of that mail and then want to send it to some other mail address if any one have code for that please share it with me
thanks alot
ashish [ ashish dot bhandari83 ( at ) gmail dot com ],
2006-08-29 01:46:04
#
-
how to read sent items through .net
[ Reply ]
hi can any tell me that how can i read the sent items using vb.net
actully i want to read the mail address to which the mail is sent and the subject and the subject of that mail and then want to send it to some other mail address if any one have code for that please share it with me
thanks alot
ashish [ ashish dot bhandari83 ( at ) gmail dot com ],
2006-08-29 01:46:52
#
-
Adding Categories/Keywords
[ Reply ]
Hi, I am trying to add categories/keywords to an email I send out. I want it to appear in the Outlook - Categories column. I have tried to set the following properties all to no avail: "http://schemas.microsoft.com/mapi/proptag/x80DA101E" "urn:schemas:mailheader:keywords" "http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/Keywords" "urn:schemas-microsoft-com:office:office#Keywords"
Any ideas?
TIA, Alex Abramov alexa@avid-tech.com
Alex [ alexa ( at ) avid-tech dot com ],
2006-08-31 10:48:14
#
-
Open Mail messages in Pickup directory
[ Reply ]
Hi, Can someone please advice me how to open mail messages using the System.Net.Mail or System.WEb.Mail, when the messages are lying in the pickup directory of IIS.
Thanks, Adnan
Adnan Qamar Chaudhry [ adnan dot qamar ( at ) gmail dot com ],
2006-10-04 03:42:08
#
-
How to send a mail multiple user
[ Reply ]
How to send a mail multiple user without using “;” separator and CC ,bcc
Samarendra [ samarendra ( at ) insync dot co dot in ],
2006-10-20 04:26:11
#
-
How do I know if an email is a reply to one I sent
[ Reply ]
I am looking for a way to tag my emails (custom header, Mime attachment) in a way that when I receive a reply I can know that it is a reply, and (even better) which message it is a reply to.
Is there any way to do this? Custom headers seem to drop off on reply....
David [ Miriam0000 ( at ) aol dot com ],
2007-03-15 17:05:40
#
-
RE: How do I know if an email is a reply to one I sent
[ Reply ]
One way is to use a custom FROM address for each unique thread.
The only way is to add a custom key to the subject value. Then, extract this key and use it for thread tracking.
Cheers! dave
dave wanta [ dave ( at ) 123aspx dot com ],
2007-03-19 07:27:39
#
-
What to display my Received Mail in Specific format. How to do?
[ Reply ]
hi, i am bigener to this, I want to know about how to display received Mail in specific format please help me in this regards how to do?
its urgent..
sudheendra [ babusudhi1 ( at ) yahoo dot co dot in ],
2007-08-21 02:24:39
#
-
Issues with sending an email
[ Reply ]
This is working in other applications on the same server but fails for 1, i get the following error "The transport failed to connect to the server"
here is the code Dim objMM As New MailMessage objMM.To = "me@mymail.com" objMM.From = "anotherme@mymail.com"
objMM.BodyFormat = MailFormat.Text objMM.Priority = MailPriority.Normal objMM.Subject = "Hello" objMM.Body = "Please NOTE: that your mail is not sending."
SmtpMail.SmtpServer = "ip address" SmtpMail.Send(objMM)
please help
Tammy [ tlotlo8 ( at ) gmail dot com ],
2008-05-12 09:22:41
#
-
RE: Issues with sending an email
[ Reply ]
Hi, If it is the exact same code, then I would guess you have a virus scanner installed, inside of the virus scanner config, you didn't allow your app to send email.
You may need to do some configuring in the virus scanner.
Cheers! Dave
dave wanta [ dave ( at ) advancedintellect dot com ],
2008-05-12 10:13:26
#
-
RE RE: Issues with sending an email
[ Reply ]
but how are the other applications working,on the same server and using the same smtp server?
Tammy [ tlotlo8 ( at ) gmail dot com ],
2008-05-13 01:07:46
#
-
RE: RE RE: Issues with sending an email
[ Reply ]
hi, If the code is identical, then it is most likely cause is a permissions issue some where.
I usually start checking the normal places for something like this:
Virus scanner config Firewall config System or Application event logs
Cheers! Dave
dave wanta [ dave ( at ) advancedintellect dot com ],
2008-05-13 06:29:36
#
-
How can I change the EHLO/HELO field?
[ Reply ]
My local system has a lot of sites with different domains` names. Each of them send а smtp message, but all of they introduce itself equally with name of the local machine. Is there a way to introduce each of smtp senders with their domain name?
Dmitry [ dzyukov ( at ) ulr dot net ],
2008-07-07 12:56:44
#
-
Send Email Failure
[ Reply ]
Hi, I have an application which sends emails using SMTP. It was working fine earlier in our office, now they put a common user name and password for SMTP server. After this the mails are not going, it throws an error. In outlook it configured using "My Outgoing server (SMTP) requires authentication" and have to choose the option "Log on using" user name and password has to be provided. How can i make my application to accept this user name and password to send mails, I have my mail settings configured in the web.config
sreedev [ sreedev ( at ) almoayedgroup dot com ],
2009-01-05 08:45:59
#
-
RE: Send Email Failure
[ Reply ]
Hi, Assuming you are using the <mailsettings> section, this is irrelevent.
System.Web.Mail does not use the <mailsettings> section. System.*Net*.Mail does.
Cheers! Dave
dave wanta [ dave ( at ) advancedintellect dot com ],
2009-01-05 09:00:44
#
-
Sending mail with voting button option in C#
[ Reply ]
Is it possible to send a auto mail with voting button option (Say Approve/Reject) using C# coding? The requirement is to trace the response from the user and update the same in the database.
Lakshmi [ nraji_lak ( at ) yahoo dot co dot in ],
2009-02-09 03:32:24
#
|