Sponsored by
www.aspnetemail.com
|
 |
Discuss This FAQ Item
Got a question? Another Suggestion? Want to post your solution? Discuss it below.
-
Read receipt
[ Reply ]
Another use for a custom header is to request a read receipt. You cannot guarantee that the receipt request will be honored, because that's up to the target client, but this seems to be how to request a receipt, anyway:
mailMessage.Headers.Add("Return-Receipt-To", "mpope@microsoft.com" )
mailMessage.Headers.Add("Disposition-Notification-To", "mpope@microsoft.com" )
Apparently Return-Receipt-To is deprecated. I found that I had to add a disposition-notification-to to get our server at work to pay attention to the request.
mike [ mpope ( at ) microsoft dot com ],
2004-02-24 14:30:46
#
-
RE: Read receipt
[ Reply ]
How would I send an e-mail requesting a read receipt to iron7@tiscali.co.uk.
thanks sheila
sheila [ sheila dot bullock ( at ) blueyonder dot co dot uk ],
2007-04-02 11:22:04
#
-
RE: Read receipt
[ Reply ]
hello sir, we are doing jobsite project in asp.net & c# when I run the application values are inserted to database but I got an error reg smtpmail Send failure: System.Web.HttpException: Could not access 'CDO.Message' object. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x80040220): The "SendUsing" configuration value is invalid. --- End of inner exception stack trace --- at System.RuntimeType.InvokeDispMethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters) at System.RuntimeType.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) at System.Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args) at System.Web.Mail.LateBoundAccessHelper.CallMethod(Type type, Object obj, String methodName, Object[] args) at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) --- End of inner exception stack trace --- at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) at System.Web.Mail.CdoSysHelper.Send(MailMessage message) at System.Web.Mail.SmtpMail.Send(MailMessage message) at Home.BackGroundInformation.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\home\backgroundinformation.aspx.cs:line 121
E.Arulraj [ arulraj_kmk ( at ) yahoo dot com ],
2007-04-17 22:55:30
#
-
hello
[ Reply ]
hello,it is me
michealin [ linhui3767 ( at ) sina dot com ],
2004-03-03 21:56:55
#
-
sendmail
[ Reply ]
how can i request an acknowledgement (read receipt) for a mail sent using C# code ?
neeraj [ neerajs ( at ) cistemsindia dot com ],
2004-11-02 04:51:21
#
-
SMTP nedd username and password
[ Reply ]
sir,what can I do if the SMTP need username and password?
J [ jhonson13 ( at ) 163 dot com ],
2004-12-28 00:26:04
#
-
How to get mails from pop3 server
[ Reply ]
Hi,
How to get mails from pop3 server. if anyone have a idea or source code. please let me know.
regards, kishore ali.z
Kishore ali [ kishoreali dot mdu ( at ) galatta dot com ],
2004-12-28 22:27:44
#
-
RE: How to get mails from pop3 server
[ Reply ]
I am facing problem in connecting with POP3 server for sending and receiving mails. So if possible please send the code. How to do these things. Because I am developing Mail Server in ASP.
Rajendra Kumar [ rajendra_kesarwani ( at ) yahoo dot co dot in ],
2005-06-09 21:35:42
#
-
RE RE: How to get mails from pop3 server
[ Reply ]
I am setting up an email reading page on my web site using ASP.NET. I have found out how to get the mail from the page but to read it back to a page, I am having problems.
Thank you.
Alvin
Alvin [ globe3a ( at ) rcn dot com ],
2006-01-08 00:36:24
#
-
RE RE: How to get mails from pop3 server
[ Reply ]
I am setting up an email reading page on my web site using ASP.NET. I have found out how to get the mail from the page but to read it back to a page, I am having problems.
Thank you.
Alvin
Alvin [ globe3a ( at ) rcn dot com ],
2006-01-08 09:25:30
#
-
RE: How to get mails from pop3 server
[ Reply ]
how can I read my rr mail
albert khalil [ akhalil ( at ) sc dot rr dot com ],
2006-09-23 07:34:28
#
-
How to trap errors in SMTPMail.Send(strMessage)
[ Reply ]
How to trap errors in SMTPMail.Send(strMessage)
Rodriguez [ rodriguez ( at ) rodriguez dot com ],
2005-02-19 02:51:48
#
-
Using default smtp server
[ Reply ]
Im trying to send a simple mail in c# using SMTP, and the default windows smtp server. The code I am currently using is:
MailMessage msg = new MailMessage(); msg.To = ... msg.From = ... msg.Subject = ... msg.Body = ...
SMTPMail.Send(msg);
However, the specified address doesnt receive the email. Any ideas / hints / example code would be very much appreciated. Thanks Ben
Ben [ robertsben ( at ) gmail dot com ],
2005-03-23 15:42:54
#
-
RE: Using default smtp server
[ Reply ]
give the smtp ip adress.try this may work for u.
MailMessage msg=new MailMessage(); msg.To="tmythilee@yahoo.com"; msg.From ="mythileereddy@yahoo.com"; msg.Body="TextBox2.Text"; msg.Subject="TextBox1.Text"; System.Web.Mail.SmtpMail.SmtpServer="107.108.4.170";or "local host"; System.Web.Mail.SmtpMail.Send(msg); Response.Write("Mail sent");
regards tanuja.
tanuja [ tmythilee ( at ) yahoo dot com ],
2005-07-07 02:58:32
#
-
Dot in Email Address
[ Reply ]
What if the target recipient has a dot in the email address (such as "firstname.lastname@something.com")?
27 [ ksmith ( at ) lerningkerv dot com ],
2005-05-08 07:56:14
#
-
receiving my messages from Road runner
[ Reply ]
I forgot how to get on to the road runner log page to check my mail while I am on the road I thought it was http://www.rr.webmail.net but this did not work is there another way .You can send the message back to my aol account I can pull that up. thank you
ronaldbell [ ronaldbell ( at ) aol dot com ],
2005-08-20 19:14:03
#
-
error in W2003 server
[ Reply ]
I'm having a Unknown Error (Could not access to CDO.Message) it works on Win2K Server, but not on Win2003 Server.
I have found that the length of the HTMLBody is what causes the problem. Any body length over 1022 characters gives me the error, but anything under mails just fine.
I have multiple sites running on my Win2003 Server and I have found that the same code that is rejecting the over 1022 char emails on one site, works fine on another site.
The site properties in IIS are exactly the same. The code is using the exact same SMTP properties, yet one site works and the other doesn't.
I've searched the net and have yet to find someone that has answered this Win 2003 problem.
Does anybody know why does it happen????
Pleaseeeeeeeee, liliana
liliana [ liliauquilla ( at ) yahoo dot com ],
2005-08-22 08:08:00
#
-
Acknowledgement Code
[ Reply ]
Hello Folks I needed the code that serves the following Purpose:
The code may be sent with a mail by sender and when the mail is read at other end(recipient) or it is been clicked(say subject hyperlink) ........
It sends back an auomatically generated acknowledgement that the mail has been checked to the sender.
This is common phenomena used by greeting sites
can anybody help
Raj
Rajesh [ ultimatemaestro ( at ) yahoo dot com ],
2005-10-04 02:45:30
#
-
acknowledgement
[ Reply ]
Sender send email with a hyperlink to recepient and when the receiver click the link automatically it will redirect to sender and sender send username and password to receipient This is very urgent for ongoing project please help me very soon.
Thanks in advance K.selvambikai.
k.aselvambikai [ kselvambikai ( at ) gmail dot com ],
2005-11-08 01:51:06
#
-
What is the Maximum Size of Attachment
[ Reply ]
Dear Friends ,
Can any body tell that waht is Maximum Size of Attachemet that we can sent using Web.Mail ie, message.Attachments.Add(att) I am using an application there i can sent upto 5 MB but i need to sent some files which are More that this Wht Do I will Do for this ...I am totally Helpless ..... Can Any body help me or Guide me .....
Regards. JO.
Joby mathew [ haijob ( at ) rediffmail dot com ],
2006-01-16 03:04:04
#
-
cdomessage.object
[ Reply ]
i am getting cdomessage.object error when sending the mail. how to rectify
srividya [ srividyarajaram ( at ) yahoo dot com ],
2006-02-07 23:04:49
#
-
Email subject
[ Reply ]
Hi,
is there any way to format subject string to make some words in bold?
Thank you, Victoria.
Victoria [ victoria ( at ) jennypruitt dot com ],
2006-02-08 11:29:14
#
-
RE: Email subject
[ Reply ]
objMail.BodyFormat=MailFormat.Html; //To send mail in Html format objMail.Body= "<b>Hi</b><br><u>welcome</u>";
Arun [ krjarun ( at ) gmail dot com ],
2006-04-19 02:08:46
#
-
set to receive undeliverable notification
[ Reply ]
Is there a CDO.Message.Fields property I can set to make sure I'll get a notificaiton on invalid email address? I've tried to set the 'urn:schemas:mailheader:disposition-notification-to' field to the sender's email address, but nothing happen if the email has an invalid receipient address.
Angel Lee [ alee ( at ) proteantech dot com ],
2006-09-12 10:48:42
#
-
How can handle Bad Mails?
[ Reply ]
I want to handle the bad mails counts by using System.Net.Mail. Please any can share your ideas.
Regards, Devaraj R
Devaraj R [ arudev_2k4 ( at ) yahoo dot com ],
2007-03-28 19:13:39
#
-
Please Help me
[ Reply ]
Hello I would like to design a website for provide certified mail service on internet..i have designed the weebsite like http://WWW.RETURNRECIPT.COM in ASP.Net But i have got lot of doubts in programming on my website.I have tried ur codings also..I want to Know if i use SMTP protocol whether i can receive the return recepiet or I should use S/MIME only.And tell some suggestion about how to design this.....If ur having any codings send that website address
Regards S.Rahul
rahul [ rahul_instru02 ( at ) yahoo dot co dot in ],
2007-07-20 05:52:57
#
-
http://www.craftwork-trade.com
[ Reply ]
wholesale discount Christmas gift, car model,beijing2008 Olympics keepsake,jade bracelet,jade put,jade bead,jade adorn,gem,woodcarving,chinaware,abstract painting,clay painting,personality painting,landscape painting,still life painting,buddha bead,argentum,wristwatch.
craftwork [ craftwork-trade ( at ) hotmail dot com ],
2007-10-22 13:55:31
#
-
undelivered mails
[ Reply ]
while sending mails its go without fail but its not actally delivered. why and where it gone
Jeevan [ jeevan dot shetty ( at ) gmail dot com ],
2007-10-26 13:17:22
#
-
Mail has not delivered to one resident.
[ Reply ]
I have use SMTP .net class to send mail. Mail has sent all the users except one. I canot understand why mail has not delieved to one resident.
I have used code :
SmtpClient client = new SmtpClient(SMTPServer);
MailAddress from = new MailAddress(fromAddress, fromName);
MailAddress to = new MailAddress(toAddress, toName);
MailMessage message = new MailMessage(from, to);
message.Subject = msgSubject;
message.Body = msgBody;
message.Priority = MailPriority.High;
client.Send(message);
Bhisham [ bhisham dot makkar ( at ) igt dot in ],
2008-02-06 05:05:33
#
-
Multiple fields into one e-mail body.
[ Reply ]
This is a great resource, thank you.
I was looking at the simple "How to send an e-mail" sample and it's really easy. However, I seldom need to send the user input from a single form field as a message body. I need to collect user input from Select controls, Radio Switches, Check Boxes, and multiple text inputs. And all of that data needs to go into a single e-mail message body.
How would I do something like that?
Thanks
Derner Corresides [ derncorres ( at ) yahoo dot com ],
2008-02-08 12:29:56
#
-
about sending linkin email
[ Reply ]
hello,
i want to send a link in email, and i want to execute the c# page on clicking on the link without opening it . is it possible ? can you help me?
Rupali [ rupalikombade ( at ) gmail dot com ],
2008-02-12 23:47:26
#
-
problem with title
[ Reply ]
iam an C# asp.net programmer.i read the mail from my server.but i need to display its subject title nly in my form.plz help me
ranjith [ ranjithemails ( at ) gmail dot com ],
2008-08-28 03:01:54
#
|