Web Forms :: Email Attachment Only Works In Dev Environment Not On Hosted Server?

Feb 5, 2010

I have a form where a user asks for a quote and we need to send an attached application form. all this worked in the dev environment but when I post the changes onto our hosted server (third party ISP) I get an error when the attachment is added. I have tired to use URL's but that does not work, at the moment I am using a relative path, but have also tried to place the file in the forms page folder.

Here is my attachment code:

string strFullPath = System.Web.HttpContext.Current.Server.MapPath(pRelativePath);
Attachment myAttachment = new Attachment(strFullPath, System.Net.Mime.MediaTypeNames.Application.Pdf);
myMsg.Attachments.Add(myAttachment);

this is in a try - catch block and I get the error "Could not find file".

View 2 Replies


Similar Messages:

Security :: Email Attachment From Website In Medium Trust Environment?

Feb 10, 2010

The website is on a shared hosting server with the trust levels set to medium.

I am sending an e-mail from the website (to confirm a booking) and need to attach a PDF doc (directions) with the mail.

The server is rejecting the mail because of the trust level.

My code line for the attachment is:

//mail.Attachments.Add(new System.Net.Mail.Attachment("c:/Domains/booking.proteafarm.co.za/images/DirectionsToProteaFarmMontagu.pdf"));

View 2 Replies

Configuration :: Global.asax Email Not Working In Test Or Production But Works On Hosted Site

Apr 12, 2010

I have a hosted site and just added some additional error notification to my global.asax file and works like a charm. I decided to add the same logic to our test server and it doesnt work. The server.transfer never happens and the email never gets updated. Now i know the email works on the test and production server since we have other pages that use the same SMTP server name and setup as i have in the global file. Below is my code as it is in the file now. I setup a test page to cause an error and the page displays the detailed error which we dont want. But i would like to be notified if this happens. What am i missing? I can only assume that its a IIS confige issue, since the exact same code works on a hosted site, but not at work on our test or production servers. Here is the code i have in the global.asax

[Code]....

View 18 Replies

WSDL Works Locally But Not When Hosted On A Remote Server

Sep 20, 2010

I created a WSDL with Visual Studio 2005 and tested it using localhost. It worked exactly as anticipated and returned the expected results. I basically called the WSDL from a classic ASP page using Server.CreateObject("MSXML2.ServerXMLHTTP.3.0") and all went well. The url was http://localhost/service.asmx/methodname.


I deployed the WSDL to the remote server and tried to access it the same way; I changed localhost with the domain name as http://domainname/service.asmx/methodname. But now I get 'Post to http://domainname/service.asmx/methodname failed with 500.

View 5 Replies

Web Forms :: How To Delete Attachment (files) In The Server After Send An Email

Nov 1, 2010

I hava a web form to fill a pdf, add attachments and send it through email. I need to fisically delete the attachments after send the email. I have some problems (exception) that says "the file has been used by another process". This code is in a function that create the message with the attach.

[Code]....

View 6 Replies

Error Sending Email On Asp.net From Hosted Server

Jan 19, 2011

I receiving an error when sending email from an asp.net page on a hosted server. Below is the code and error;

MailAddress from = new MailAddress("email@home.com");
MailAddress to = new MailAddress('ToMe@something.com");
using (MailMessage message = new MailMessage(from,to))
message.Subject = "Something";
message.Body = "Something is the body";
[code]...

View 2 Replies

IIS Configuration :: Multiple Attachments Getting Removed From Email When Hosted On Server

Jun 25, 2013

I have tried with your pice of code(Published date : sep 16, 2012) to send multiple attachments in asp.net. On my local machine it is working perfectly. When I host my application on server, mail contains attachment(Single or multiple both) is not sending. Attachment and remove files for attachments are working properly but attachment mail is not sending on server.

View 1 Replies

State Management :: Can Use Session Variables In A Hosted Environment

Feb 11, 2011

if using session variables to store and retrieve information is a bad practice? Let me give you some background:

I am developing a site for a friend of mine, and his site is hosted by Go-Daddy. My feeling is that Go-Daddy is not the best place to host a .NET site, but it is what it is.

After the first version of the site was published and people started using it, users immediately started having session time-out problems and null exceptions when referencing session variables. I researched everything I could and tried everything I could think to do, but I just could not correct the issue.

Then, while doing some testing, I discovered that users weren't individually timing-out and losing their session information, but, rather, all users where timing out at exactly the same time, regardless of how long they had been logged in or what they were doing. So, for whatever reason, the server was just dumping all sessions at random intervals.

At this point I needed to move on with the project so I added a number of cookies to replace the session variables, and everything began working properly.

in a hosted environment, should I avoid using session variables? Is it as problamatic as my research and experience would indicate, or is this simply due to the fact that I am working with a poor hosting company in Go-Daddy?

View 3 Replies

Security :: Write To Isolated Storage On Client Disk In A Hosted Environment?

Jul 6, 2010

We have had complaints of users losing data that they entered in textboxes in our ASP.NET 2.0 web application. Users are authenticated using Web Single Sign On method. My boss would like to save the client data in a file on their local disk in case they lose connectivity. I know this is not allowed with the default security of ASP.NET.

Would it be possible to programmatically change the ACL permissions for the NETWORK SERVICE account to access the isolated storage folder on the logged in user's local disk? Is there a better way to achieve this goal of persisting user data to a file?

View 2 Replies

Localization Works On Localhost But Not In Production Environment

Jan 20, 2011

I have this website with english and portuguese support. In localhost everything works fine and the content is translated based on the querystring parameter named "lang". This chunk of code makes the trick in every page:

protected override void InitializeCulture() {
SetCulture(); } private void SetCulture() {
var logger = Util.GetLogger();
string lang = Request.QueryString["lang"];
if (string.IsNullOrEmpty(lang)) { lang = "pt-br"; }
string sessionLang = (string)Session["lang"];
if (sessionLang != lang) { Session["lang"] = lang;
} logger.Log(string.Format("Culture {0} found",lang));
UICulture = lang; Culture = lang;
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(lang);
Thread.CurrentThread.CurrentUICulture = new CultureInfo(lang);
logger.Log(string.Format("Cultura {0} set", lang));
base.InitializeCulture(); }

Thanks to the logger I can say for sure that this method is called in both cases (production and localhost). I have two resources files in App_GlobalResources folder:
-WebSitemapGlobal.en-us.resx;
-WebSitemapGlobal.resx;

View 1 Replies

Web Forms :: Memorystream Attachment On An Email?

Sep 28, 2010

I'm trying to attach a memorystream as an attachment to an email, however the file is always empty. I'm using a streamwriter to write the text in to the memorystream, I then flush the streamwriter and I can see the memorystream has data. However when I attach the memorystream to the email the file is always empty. I can't see what I'm doing wrong. The code is:

[Code]....

var4 is a string of XML data.

View 4 Replies

Web Forms :: Unable To Send Email With Attachment

Jan 26, 2011

I have a strange problem with sending email via asp.net.

I adding to my email an attachment with long name ("Xxxxxxxx ąę łóxxxx yyyyyyyyyńęąąyy bbbbbbbbbb b wwwwwwwww wwwwwww ooooooooo" - polish chars included). Next I receiving that email with that file but I can't read the file. There is like damaged, with different name - ""=_utf-8_B_WHh4eHh4eHggxIXEmSDFgsOzeHh4eCB5" and the file size is a little bigger.

View 5 Replies

Web Forms :: Send Email With Image As Attachment?

Feb 10, 2010

I want to send email with image as attachment.

It should be happen by retriving image from sql server database.

View 3 Replies

Web Forms :: How To Send An Email And Search For Attachment

Oct 25, 2010

I know how to send an email. But now I want to send an email with an attachment. I also want to allow the user to browse for and then select the attachment. I cannot seem to find any info on this. All the articles I find show how to attach a file where you know the path and file name. I want the user to browse their drive, select a file, and then send an email with this attachment.

View 3 Replies

Web Forms :: Way To Send Email With Attachment Only For 1 Recipient

Oct 27, 2010

Is there a way to send the same email to multiple recipients but also send with an attachment to only 1 of them?eg. I have a form that gets filled out, the user gets a copy of the form with an attachment (file sits on server). The site owner also wants the email (through bcc) but without the attachment.

View 2 Replies

Web Forms :: Upload File From Email Attachment?

Jul 8, 2010

Is there any way to copy an attachment within an Outlook email and then paste it into a web control that will be able to upload it? I'm thinking no but if there is a way I haven't found it yet.

View 2 Replies

Web Forms :: What Is Best Way To Design A Form Which Sends An Email With An Attachment

Feb 5, 2010

I have been given the task to develop a web form which will send an email with an attachment.

I know all about sending an email using (SMTP) What I want to know is that what is the best way to send an attachment along with rest of the email.

I know that ASP.NET has a file upload control and then there are C# post to send a file and then AJAX way to send a file. So my question is what should I use...

View 3 Replies

Web Forms :: Upload - Watermark And Email Image As Attachment

May 7, 2015

i want to mail water marked image to the user.but i can't do this. i will show my code...

to use this code,the image watermarking is done...buti can't attach this file to the mail.

Bitmap bmpUpload = new Bitmap(FileUpload1.PostedFile.InputStream, false);
Graphics graphicsObj = Graphics.FromImage(bmpUpload);
Brush brush = new SolidBrush(Color.Gray);
Point postionWaterMark = new Point((bmpUpload.Width / 25), (bmpUpload.Height / 35));

[CODE]..

View 1 Replies

Web Forms :: Export To Excel And Send As Email Attachment

Apr 27, 2012

I have a small form

employeenumber ---textbox
employee name ---- textbox
employee department ---- textbox
employee sal ----- textbox
employee age ---- textbox

Now I have a webpage with search textbox

employeenumber ----- textbox (search criteria)

When user types employee number all the sql related data should fill the form containing employee name, sal, age , dept etc.

next

I have 2 buttons

excel export
automail

In excel export i have a specified format

IF IMGAE NOT DISPLAYED I HAVE CREATED MACRO

Range("A1:A2").Select With Selection .HorizontalAlignment = xlCenter .VerticalAlignment = xlBottom .WrapText = False .Orientation = 0 .AddIndent = False .IndentLevel = 0 .ShrinkToFit = False .ReadingOrder = xlContext .MergeCells = False End With Selection.Merge ActiveCell.FormulaR1C1 = "LOGO" Range("A1:A2").Select With Selection .HorizontalAlignment = xlCenter .VerticalAlignment = xlCenter .WrapText = False .Orientation = 0 .AddIndent = False .IndentLevel = 0 .ShrinkToFit = False .ReadingOrder = xlContext .MergeCells = True End With Range("B1:G2").Select With Selection .HorizontalAlignment = xlGeneral .VerticalAlignment = xlCenter .WrapText = False

[Code] .... 

What I actually need is : when I click export button textbox data should be send to excel file and particular textbox data should be received at particular cell.

E.g:- textbox1 to send to c3 or c4

textbox 2 to send g9

when i click mail button, that data should be send to excel and automailed as attachment, i have 3 excel files with different formats, export button should view all the excel files with their respective data and mail button should send mail the excel files with data ,

1 user i excel file
2nd user 2nd excel file
3rd user 3 excel file

View 1 Replies

Web Forms :: Upload File And Send As Email Attachment

Mar 26, 2016

My requirement is like .... I have a text box for ToEmail address , another control is to upload "n" no of files. And a button to send those selected files ToEmail address which had entered in textbox.

View 1 Replies

Web Forms :: Send Email In Hosted In Google Mail?

Jun 14, 2010

protected
void Page_Load(object sender,
EventArgs e)//sds();
SendMail(
465,[URL],"myemail@[URL]","mypassword","Your
name","to@[URL]","Stefan Receiver","ahmed.drar@[URL]","Test","Hello
there Steff!",true);//private void sds()
}
{
sToName = sToEmail;
sFromName = sFromEmail;
System.Web.Mail.MailMessage Mail =
Mail.Fields[
Mail.Fields[
Mail.Fields[
Mail.Fields[
{
public
static
void SendMail(string sHost,
int nPort,
string sUserName,
string sPassword,
string sFromName,
string sFromEmail,
string sToName,
string sToEmail,
string sHeader,
string sMessage,
bool fSSL)
if (sToName.Length == 0)
if (sFromName.Length == 0)
new System.Web.Mail.MailMessage();
[URL]
if ( fSSL )
[URL] =
"true";
if (sUserName.Length == 0)
//Ingen auth
}
{
Mail.Fields[
Mail.Fields[
Mail.Fields[
}
Mail.To = sToEmail;
Mail.From = sFromEmail;
Mail.Subject = sHeader;
Mail.Body = sMessage;
Mail.BodyFormat = System.Web.Mail.MailFormat.Html;
System.Web.Mail.SmtpMail.SmtpServer = sHost;
System.Web.Mail.SmtpMail.Send(Mail);
}
else
[URL]

View 4 Replies

Web Forms :: Send An Email From Hosted Site Task?

Feb 24, 2011

The host I use for our site lets us schedule a task, we can pointo the site and a file on the site. I'm not clear on how to make the file I point to actualy do something like run a stored procedure or send and smtp email or run some code in my app.

View 3 Replies

Web Forms :: Send Email With An Excel Attachment On Clicking The Button?

Mar 1, 2010

I have a page which has about 50-60 labels in it, and the data is pulled from the database and displayed on the labels. I need to export this data to an excel sheet and Email it when I hit on an Email Button which is at the bottom of the same page 1.e below the table(which has labels displaying data). I Am able to export the data to an excel sheet but not understanding how to Email rightaway without saving or opening the excel sheet.

View 2 Replies

Web Forms :: Export ASPX Page To PDF And Send It As Attachment In Email

Sep 13, 2012

I want to send aspx page via email. So i converted it into pdf. The problrm is the pdf is getting created before the data is saved. So when i open the pdf my testboxes are empty. Below is the code am using. Also I want to send the pdf file as attachment.

protected void SendMail() {
var userName = "anusha-4.n-4@cognizant.com";
var toAddress = YourEmail.Text.ToString();
const string Password = "Mypassword123#";
string subject = YourSubject.Text.ToString();

[Code] .....

View 1 Replies

Web Forms :: How To Convert String To QR Code And Send As Email Attachment

Mar 27, 2014

I  have coded random string as below and i want  to convert it to qr code , then send to email automatically... 

Dim chars As String = "Test1"
Dim qr As String = ""
Dim r As New Random()
Dim i As Integer
For i = 1 To 5
qr += chars.Substring(r.Next(chars.Length), 1)
Next

View 1 Replies







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