| creating an email account administration console in .NET (3 replies) |
| ASPFriends.com 'ngfx-mail' list |
| Moved from [aspngfreeforall] to [ngfx mail] by James Avery javery@deluxeeng.com I need to be able to create new email accounts from an ASP.NET page... if (Page.IsPostBack) { string emailAcct EmailName.Text "@hotblue.com"; // insert code here to create that account in the smtp/pop3 server // ANY IDEAS ON HOW I COULD DO THIS HERE??? Results.Text "Email address a href \"mailto:" emailAcct "\" " email... |
|
| The "SendUsing" configuration value is invalid. (4 replies) |
| ASPFriends.com 'ngfx-mail' list |
| hi gurus, i'm using the following code to send a mail over the cdo: private void SubmitBtn Click(Object sender, EventArgs e) { string strMsg ""; MailMessage mail new MailMessage(); if (txtEMail.Text ! "") mail.From txtEMail.Text; else mail.From "unknown"; strMsg " b From : /b " txtEMail.Text " br "; strMsg " b Name : /b " txtName.Text " br "; mail.To EMailAddress; mail.Subject txtSubject.Text; str... |
|
| POP Emails (3 replies) |
| ASPFriends.com 'ngfx-mail' list |
| Hi! All, Do we have any classes in the Dot Net toget the Pop Email? Regards Mudassir Cell: 0300 9274871 Office: 5800861/2 Web: http://www.magsnet.net Email: mmudassir@mags.net.pk |
|
| Receive single HTML/Plain Text email (2 replies) |
| ASPFriends.com 'ngfx-mail' list |
| I'm trying to get an app to send a recipient an email that is in HTML format if they can receive HTML emails, but sends the recipient a Plain Text email if they can't get HTML email. I want the recipient to just receive one email (an HTML email if they can get it, otherwise just a Plain Text email). Someone told me that the email viewer (Iike Outlook) will just ignore the Plain Text email if you j... |
|
| System.Web.Mail only a wrapper around CDO ? (2 replies, VIP) |
| ASPFriends.com 'ngfx-mail' list |
| Moved from [aspngfreeforall] to [ngfx mail] by Marcie Jones marciejones@yahoo.com from http://www.exclamationsoft.com/exclamationsoft/Smtp.NET/ "...Microsoft's System.Web.Mail is only a wrapper around CDO making it less efficient and more prone to unexpected problems. If you use System.Web.Mail, your applications are not fully managed..." is this true ? any comments ? Rolando rramirezg@hotmail.com... |
|
| Catching SmtpMail Exceptions? (3 replies) |
| ASPFriends.com 'ngfx-mail' list |
| Moved from [aspngfreeforall] to [ngfx mail] by Marcie Jones marciejones@yahoo.com I have tried in vain to find any documentation as to how to error handle the SmtpMail Class. Anybody knows what syntax to use? Regards/H E4lsningar Andr E9 Colbi F6rnsen 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D Sonnenburg Communications Bergsgatan 3, SE 211 54 Ma... |
|
| Problem sending smtp mail. (7 replies) |
| ASPFriends.com 'ngfx-mail' list |
| Hello, I'm working on a page that needs to send email and I'm at the point where I just want to test sending email to myself and I get an error, pasted below (scroll down). If anybody has any ideas on this, please let me know. I've been poking around the documentation and can't come up with the answer yet. I SUSPECT it has something to do with the way my PC is set up for my broadband internet conn... |
|
| SV: Re: Catching SmtpMail Exceptions? (2 replies) |
| ASPFriends.com 'ngfx-mail' list |
| Well I have tried to use this (VB.Net): Try SmtpMail.Send( objMailMessage ) Catch exMail As SmtpException ''//Do this Finally ''//Do that End Try But of course this doen't work. I have looked for error handling of SmtpMail in the documentation but havn't found any. 09 Regards/H E4lsningar Andr E9 Colbi F6rnsen 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3... |
|
| POPping Mail with .NET? (2 replies) |
| ASPFriends.com 'ngfx-mail' list |
| Moved from [aspngvb] to [ngfx mail] by James Avery javery@deluxeeng.com Hi there. The SMTP Mail functionality of .NET is quite nice, however, I'm struggling to find any built in features for reading emails. I've found a couple resources, but nothing that really catches my eye just yet. If anyone knows of any tools or links on how to read and manipulate information from a POP server, it would be gr... |
|
| Server.create object (2 replies, VIP) |
| ASPFriends.com 'ngfx-mail' list |
| Copied from [aspngfreeforall] to [ngfx mail] by Douglas Reilly doug@accessmicrosystems.net HI In asp net i would like to use Server.createobject("project dll name") this is suppose to be latebinding . i would like to use CDO NEW MAIL and CDO objects for my mail service . server.createobject is not working for me can any one tell me whether should i have to add any COM REFERENCES in my project to u... |
|
| SmtpServer observation (4 replies) |
| ASPFriends.com 'ngfx-mail' list |
| just an observation here... i was going through the docs on SmtpMail.SmtpServer... and according to the docs. The name of the e mail server. If SmtpServer is not set, the name of the local SMTP server is used. so, according to this, you 'don't' need to set SmtpMail.SmtpServer "localhost"; However, I'll contend the docs are wrong... however, I do have another question\observation about the SmtpMail... |
|